File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 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):
4646` $ composer require "phpcurl/curlwrapper" `
4747
4848
49- ##Basic usage examples. Functional vs OOP style
49+ ##Basic usage examples. Classic vs OOP style
5050
5151###Curl
5252
53- | Functional | OOP |
53+ | Classic | OOP |
5454| --- | --- |
5555| ` $h = curl_init($url); ` | ` $curl = new Curl($url); ` or ` $curl->init($url) ` |
5656| ` curl_close($h); ` | ` unset($curl); ` |
@@ -69,7 +69,7 @@ Via [composer](https://getcomposer.org):
6969
7070###CurlMulti
7171
72- | Functional | OOP |
72+ | Classic | OOP |
7373| --- | --- |
7474| ` curl_multi_init(); ` | ` $cm = new CurlMulti(); ` |
7575| ` curl_multi_close($h); ` | ` unset($cm); ` |
@@ -83,7 +83,7 @@ Via [composer](https://getcomposer.org):
8383
8484###CurlShare
8585
86- | Functional | OOP |
86+ | Classic | OOP |
8787| --- | --- |
8888| ` curl_share_init(); ` | ` $cs = new CurlShare(); ` |
8989| ` curl_share_close($h); ` | ` unset($cs); ` |
You can’t perform that action at this time.
0 commit comments