file_get_contents
$host = 'url';
$randomNumber=file_get_contents($host);
echo $$randomNumber;
升级版
$host = 'http://dd.xw025.com/c.php?key=1&http=2&ip=3';
$opts = array(
'http'=>array(
'method'=>"GET",
'timeout'=>2,
)
);
$res = @file_get_contents($host, false, stream_context_create($opts));
Curl
$host = 'url';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $host);
// 返回结果
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HEADER, 0);
// 使用POST提交
curl_setopt($ch, CURLOPT_POST, 1);
// POST参数
$str = array('a=1','b=2','c=3');
curl_setopt($ch, CURLOPT_POSTFIELDS, $str);
// 结果
$res = curl_exec($ch);
curl_close($ch);
使用curl库,使用curl库之前,你可能需要查看一下php.ini,查看是否已经打开了curl扩展
fopen
?php
$url="http://www.dnjs.net/";
$fp=fopen($url,'r');
while(!feof($fp)){
$result.=fgets($fp,1024);
}
echo" $result";
fclose($fp);
?>