@@ -23,8 +23,7 @@ use \InitPHP\Curl\Curl;
23
23
24
24
$curl = new Curl();
25
25
$curl->setUrl("https://example.com");
26
- $curl->prepare()
27
- ->handler();
26
+ $curl->handler();
28
27
29
28
$res = $this->getResponse();
30
29
@@ -40,17 +39,14 @@ This library can be used as HTTP client for your API service. Example:
40
39
require_once "vendor/autoload.php";
41
40
use \InitPHP\Curl\Curl;
42
41
43
- $curl = new Curl();
42
+ $curl = Curl::client('PUT', 'http://api.service.example.com/update/1')
44
43
45
- $curl->setUrl("http://api.service.example.com/update/1")
46
- ->setMethod("PUT") // HTTP Request METHOD
47
- ->setVersion("1.1") // HTTP Version
44
+ $curl->setVersion("1.1") // HTTP Version
48
45
->setHeader("Content-Type", "application/json")
49
46
->setBody(json_encode([
50
47
'username' => 'admin',
51
48
'password' => '12345',
52
49
]))
53
- ->prepare()
54
50
->handler();
55
51
56
52
if(!empty($curl->getError())){
@@ -74,6 +70,14 @@ switch ($curl->getResponse('code')) {
74
70
75
71
## Methods
76
72
73
+ ### ` client() `
74
+
75
+ Creates a new client object.
76
+
77
+ ``` php
78
+ public static function client(string $method, string $url): \InitPHP\Curl\Curl;
79
+ ```
80
+
77
81
### ` getResponse() `
78
82
79
83
Returns the result of the curl operation.
@@ -284,7 +288,7 @@ public function getError(): null|string
284
288
It is the ` curl_setopt() ` function in this library.
285
289
286
290
``` php
287
- public function setOpt($key, $value): self
291
+ public function setOpt(int $key, mixed $value): self
288
292
```
289
293
290
294
### ` setOptions() `
@@ -295,14 +299,6 @@ It is the `curl_setopt_array()` function in this library.
295
299
public function setOptions(array $options): self
296
300
```
297
301
298
- ### ` prepare() `
299
-
300
- cURL prepares the library for initialization.
301
-
302
- ``` php
303
- public function prepare(): self
304
- ```
305
-
306
302
### ` handler() `
307
303
308
304
cURL starts and executes.
@@ -327,14 +323,76 @@ Returns the number of bytes written on success.
327
323
/** @var \InitPHP\Curl\Curl $curl */
328
324
$curl = new \InitPHP\Curl\Curl();
329
325
$curl->setUrl("http://example.com")
330
- ->prepare()
331
326
->handler();
332
327
333
328
if($curl->save(__DIR__ . '/example.html') === FALSE){
334
329
echo "The file could not be written.";
335
330
}
336
331
```
337
332
333
+ ### ` setCookie() `
334
+
335
+ Defines a cookie to be sent with cURL.
336
+
337
+ ``` php
338
+ public function setCookie(string $name, string|int|float $value): self
339
+ ```
340
+
341
+ ** Example :**
342
+
343
+ ``` php
344
+ /** @var \InitPHP\Curl\Curl $curl */
345
+ $curl->setCookie('username', 'admin') // $_COOKIE['username']
346
+ ->setCookie('mail', '
[email protected] '); // $_COOKIE['mail']
347
+ ```
348
+
349
+ ### ` setCookies() `
350
+
351
+ Defines cookies as multiple with an associative array.
352
+
353
+ ``` php
354
+ public function setCookies(array $cookies): self
355
+ ```
356
+
357
+ ** Example :**
358
+
359
+ ``` php
360
+ /** @var \InitPHP\Curl\Curl $curl */
361
+ $curl->setCookies([
362
+ 'username' => 'admin', // $_COOKIE['username']
363
+ 'mail' => '
[email protected] ' // $_COOKIE['mail']
364
+ ]);
365
+ ```
366
+
367
+ ### ` setCookieJarFile() `
368
+
369
+ It tells the file path where the cookies values to be sent to the server will be kept or kept.
370
+
371
+ ``` php
372
+ public function setCookieJarFile(string $filePath): self
373
+ ```
374
+
375
+ If the specified file exists, cookies are read from the file and sent to the server. ` CURLOPT_COOKIEFILE `
376
+
377
+ If the specified file does not exist, cookies from the server are written to the file. ` CURLOPT_COOKIEJAR `
378
+
379
+ ** Example :**
380
+
381
+ ``` php
382
+ $login = new \InitPHP\Curl\Curl();
383
+ $login->setUrl("http://example.com/user/login")
384
+ ->setField('username', 'admin')
385
+ ->setField('password', '123456')
386
+ ->setMethod('POST')
387
+ ->setCookieJarFile(__DIR__ . '/session.txt')
388
+ ->handler();
389
+
390
+ $dashboard = new \InitPHP\Curl\Curl();
391
+ $dashboard->setUrl("http://example.com/user/dashboard")
392
+ ->setCookieJarFile(__DIR__ . '/session.txt')
393
+ ->handler();
394
+ ```
395
+
338
396
## Credits
339
397
340
398
- [ Muhammet ŞAFAK
] ( https://www.muhammetsafak.com.tr ) <
< [email protected] > >
0 commit comments