File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
- #CurlWrapper for PHP
1
+ # CurlWrapper for PHP
2
2
[ ![ Total Downloads] ( https://img.shields.io/packagist/dt/phpcurl/curlwrapper.svg )] ( https://packagist.org/packages/phpcurl/curlwrapper )
3
3
[ ![ Latest Stable Version] ( https://img.shields.io/packagist/v/phpcurl/curlwrapper.svg )] ( https://packagist.org/packages/phpcurl/curlwrapper )
4
4
[ ![ Travis Build] ( https://travis-ci.org/phpcurl/curlwrapper.svg?branch=master )] ( https://travis-ci.org/phpcurl/curlwrapper )
@@ -41,14 +41,14 @@ class MyApiClient {
41
41
}
42
42
```
43
43
44
- ##Install
44
+ ## Install
45
45
Via [ composer] ( https://getcomposer.org ) :
46
46
` $ composer require "phpcurl/curlwrapper" `
47
47
48
48
49
- ##Basic usage examples. Classic vs OOP style
49
+ ## Basic usage examples. Classic vs OOP style
50
50
51
- ###Curl
51
+ ### Curl
52
52
53
53
| Classic | OOP |
54
54
| --- | --- |
@@ -67,7 +67,7 @@ Via [composer](https://getcomposer.org):
67
67
| ` $res = curl_escape($h, $str); ` | ` $res = $curl->escape($str); ` |
68
68
| ` $res = curl_unescape($h, $str); ` | ` $res = $curl->unescape($str); ` |
69
69
70
- ###CurlMulti
70
+ ### CurlMulti
71
71
72
72
| Classic | OOP |
73
73
| --- | --- |
@@ -81,7 +81,7 @@ Via [composer](https://getcomposer.org):
81
81
| ` $i = curl_multi_select($mh, $timeout); ` | ` $i = $cm->select($timeout); ` |
82
82
| ` $r = curl_multi_setopt($h, $opt, $val); ` | ` $r = $cm->setOpt($opt, $val); ` |
83
83
84
- ###CurlShare
84
+ ### CurlShare
85
85
86
86
| Classic | OOP |
87
87
| --- | --- |
You can’t perform that action at this time.
0 commit comments