I am using cURL in PHP to connect to different APIs that I know use SPDY the new protocol from Google.
But I am unsure if by default PHP cURL supports SPDY. And if it is not is there a way to configure it so that it supports SPDY?
I am using cURL in PHP to connect to different APIs that I know use SPDY the new protocol from Google.
But I am unsure if by default PHP cURL supports SPDY. And if it is not is there a way to configure it so that it supports SPDY?
Copyright © 2021 Jogjafile Inc.
on my system with PHP 5.5.19, and curl 7.39.0 , the answer is no. You can check what your curl support, by enabling "automatic" encoding, making curl list all supported encodings to the server (enable automatic by CURLOPT_ENCODING->empty string), then check the headers sent by curl, like this:
on my system, i get this output:
meaning that deflate and gzip (and the default - no encoding/plain) is supported (no SPDY support yet im afriad)