idetinkin / php-curl-parser
Transform the curl command to the PHP Curl Object or Curl resource.
dev-master
2020-08-24 16:08 UTC
Requires
- php: >=5.6.0
- clue/arguments: ^2.0
- php-curl-class/php-curl-class: ^8.8
Requires (Dev)
- phpunit/phpunit: ^7.0 || ^6.0 || ^5.7 || ^4.8.35
This package is auto-updated.
Last update: 2025-03-25 02:40:27 UTC
README
The simple way to generate a Curl object from the curl command intended for command line.
Example of usage
If you want to simulate user actions on a third party site (acceptably only if the user trusts your service, or you are your user):
- Open a web site where you want to simulate user actions
- Open DevTools by pressing Control+Shift+J
- Click the Network tab. The Network panel opens
- Click the Doc tab
- Refresh the page
- Right-click on the request and select Copy -> Copy as cURL
- Pass the text from clipboard to the PHP script
Example of the PHP script
$curlCommand = "curl 'https://www.google.com/?gws_rd=ssl' \ -H 'authority: www.google.com' \ -H 'user-agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36' \ --compressed"; $curl = (new \curlParser\Parser($curlCommand))->getCurlObject(); $html = $curl->exec();
Supported attributes
- -H or --header
- --compressedx