PHP是否有任何本机工具可以打开http://example.com/a.rb?A=4
之类的页面,然后以文本形式获取响应?
答案 0 :(得分:2)
你可以使用file_get_contents(),但我认为卷曲是最好的方法。
这是一个很好的PHP类,你必须知道http://simplehtmldom.sourceforge.net/
答案 1 :(得分:1)
正如其他人所说,你可以使用:
$var = file_get_contents("http://google.com");
或者您可以使用curl:
<?php
// create curl resource
$ch = curl_init();
// set url
curl_setopt($ch, CURLOPT_URL, "example.com");
//return the transfer as a string
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
// $output contains the output string
$output = curl_exec($ch);
// close curl resource to free up system resources
curl_close($ch);
&GT;
的curl示例