是的,PHP命令行脚本可以用于发送网络请求。您可以使用PHP内置的cURL功能或file_get_contents()函数来发送HTTP请求。以下是两种方法的示例:
- 使用cURL库:
- 使用file_get_contents()函数:
array( 'header' => "Content-type: application/x-www-form-urlencoded\r\n", 'method' => 'GET', ), 'ssl' => array( 'verify_peer' => false, 'verify_peer_name' => false, ) ); $context = stream_context_create($options); $response = file_get_contents($url, false, $context); if ($response === FALSE) { /* Handle error */ } $data = https://www.yisu.com/ask/json_decode($response, true);>
请注意,这两种方法都需要您的PHP环境启用了相应的扩展(cURL或allow_url_fopen)。如果您不确定如何启用它们,请查阅您的PHP配置文件(php.ini)以获取更多信息。