We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2de669e commit e2efcfbCopy full SHA for e2efcfb
SECURITY.md
@@ -66,6 +66,12 @@ $curl->setOpt(CURLOPT_FOLLOWLOCATION, true); // DANGER!
66
$curl->download('https://www.example.com/image.png', 'my_image.png');
67
```
68
69
+```php
70
+$curl = new Curl();
71
+$curl->setOpt(CURLOPT_FOLLOWLOCATION, true); // DANGER!
72
+$curl->get('https://www.example.com/image.png');
73
+```
74
+
75
### Keep SSL protections enabled.
76
77
* Do not disable SSL protections.
0 commit comments