frizz925 / curl-parser
Parser for cURL command line
Installs: 21 841
Dependents: 0
Suggesters: 0
Security: 0
Stars: 6
Watchers: 3
Forks: 2
Open Issues: 2
Requires
- php: >=5.3.0
- guzzlehttp/psr7: ^1.4
Requires (Dev)
- phpunit/phpunit: ^7
- squizlabs/php_codesniffer: ^3.3
README
cURL Parser
cURL command line parser for PHP
Installation
Install using composer
composer require frizz925/curl-parser
Usage
<?php require_once(__DIR__.'/vendor/autoload.php'); $curl = <<<EOF curl 'https://api.github.com/' -H 'Pragma: no-cache' -H 'DNT: 1' -H 'Accept-Encoding: gzip, deflate, br' -H 'Accept-Language: en-US,en;q=0.9' -H 'Upgrade-Insecure-Requests: 1' -H 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36' -H 'Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8' -H 'Cache-Control: no-cache' -H 'Connection: keep-alive' --compressed EOF; $parsed = CurlParser\Parser::parse($curl); $uri = $parsed->getUri(); echo $uri; // 'https://api.github.com/' echo $uri instanceof Psr\Http\Message\UriInterface; // true echo $uri->getHost(); // 'api.github.com' echo $parsed->getMethod(); // 'GET' echo $parsed->getBody(); // '' var_dump($parsed->getHeaders()); // ['Accept-Encoding' => ['gzip', 'deflate', 'br'], DNT' => ['1'], ...] $req = $parsed->toRequest(); echo $req instanceof Psr\Http\Message\RequestInterface; // true