File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -46,11 +46,11 @@ Via [composer](https://getcomposer.org):
46
46
` $ composer require "phpcurl/curlwrapper" `
47
47
48
48
49
- ##Basic usage examples. Functional vs OOP style
49
+ ##Basic usage examples. Classic vs OOP style
50
50
51
51
###Curl
52
52
53
- | Functional | OOP |
53
+ | Classic | OOP |
54
54
| --- | --- |
55
55
| ` $h = curl_init($url); ` | ` $curl = new Curl($url); ` or ` $curl->init($url) ` |
56
56
| ` curl_close($h); ` | ` unset($curl); ` |
@@ -69,7 +69,7 @@ Via [composer](https://getcomposer.org):
69
69
70
70
###CurlMulti
71
71
72
- | Functional | OOP |
72
+ | Classic | OOP |
73
73
| --- | --- |
74
74
| ` curl_multi_init(); ` | ` $cm = new CurlMulti(); ` |
75
75
| ` curl_multi_close($h); ` | ` unset($cm); ` |
@@ -83,7 +83,7 @@ Via [composer](https://getcomposer.org):
83
83
84
84
###CurlShare
85
85
86
- | Functional | OOP |
86
+ | Classic | OOP |
87
87
| --- | --- |
88
88
| ` curl_share_init(); ` | ` $cs = new CurlShare(); ` |
89
89
| ` curl_share_close($h); ` | ` unset($cs); ` |
You can’t perform that action at this time.
0 commit comments