Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以使用 php curl 检查对 ALPN 的支持?
例如:if ($is_alpn == true) {echo 'ALPN supported';}
if ($is_alpn == true) {echo 'ALPN supported';}
PS curl 7.49.0,php 7.0,openssl 1.0.1t
你可以用详细的方式调用 curl 来查看 alpn 支持:
$cmd = 'curl -X HEAD -v --silent https://comicbooks.world/ 2>&1 | grep "ALPN, offering"'; exec($cmd, $output); var_dump($output);