最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
php file_get_contents函数
时间:2022-07-02 10:04:16 编辑:袖梨 来源:一聚教程网
php file_get_contents函数,
本函数用来读取远程服务器文件的内容,这样大大的方便写采集朋友了,只要很简单的一句就可以把远程服务器的文件保存到自己的数据库,你说简单不,光说不行了我举个例子看看吧.
function getcontent($url) {
$retmsg =file_get_contents(' ');
return $retmsg;
}
这就么一句,你想要的远程内容就给你偷过来了,不过还有一个与file_get_contents函数相同的ob_get_contents();函数,但听说效果要好了一些.
/*
$ch =curl_init($url);
ob_start();
curl_exec ($ch);
$retmsg=ob_get_contents();
ob_clean();
ob_end_flush();
curl_close ($ch);
*/
呵呵,具体那个好你自己用了才知道了我就说到这里了,本站原创转载请注明:
相关文章
- 鹅鸭杀超级金水铃模式怎么玩 08-07
- 牧场物语风之繁华集市生日日期怎么看 08-07
- 口袋新旅途如何捕捉颓颓鹰 08-07
- DNF狄瑞吉版本女漫游加点攻略 08-07
- 鹅鸭杀士兵怎么玩 08-07
- DNF狄瑞吉版本协战师加点攻略 08-07