本帖最后由 qinweiwd 于 2009-8-10 12:59 编辑
继续关注此贴,希望楼主修复错误。
blackbee 发表于 2009-8-9 15:10
http://www.qiapu.com/plug.php?mode=area 访问结果为空
应该是这个文件里面的地址不对:
修改:echo do_post_request("http://.. 这一行为:
echo do_post_request("http://sns.135edu.com/get.php?" . $_SERVER['QUERY_STRING'],"",null);
应该就没什么问题了!或者把下面的代码复制替换plug.php里面的代码:
<?
function do_post_request($url, $data, $optional_headers = null)
{
$params = array('http' => array(
'method' => 'GET',
'content' => $data
));
if ($optional_headers !== null) {
$params['http']['header'] = $optional_headers;
}
$ctx = stream_context_create($params);
$fp = @fopen($url, 'rb', false, $ctx);
if (!$fp) {
throw new Exception("Problem with $url, $php_errormsg");
}
$response = @stream_get_contents($fp);
if ($response === false) {
throw new Exception("Problem reading data from $url, $php_errormsg");
}
return $response;
}
echo do_post_request("http://sns.135edu.com/get.php?" . $_SERVER['QUERY_STRING'],"",null);
?> |