首頁  >  文章  >  php教程  >  php curl、fopen、file_get_contents实例代码

php curl、fopen、file_get_contents实例代码

WBOY
WBOY原創
2016-05-25 16:42:191146瀏覽

//php curl实例代码如下: 
 
session_write_close(); 
$pageurl = "http://www.phprm.com/index.html";  
curl_setopt($ch, curlopt_returntransfer, 1);  
curl_setopt ($ch, curlopt_url, $pageurl );  
$html = curl_exec ( $ch );  
curl_close($ch); 
//then you need to fix pathing to absolute  
$search = "/(src|href|background)="[^:,^>,^"]*"/i"; 
preg_match_all ( $search, $html, $a_matches ); 
 
//php fopen实例,代码如下: 
 
$file = fopen("http://www.phprm.com/","r"); //读取远程文件 
$file = fopen("a.txt","r");//读取本地文件 
//php file_get_contents 
$homepage = file_get_contents('http://www.phprm.com/'); //读取远程文本 
echo $homepage; 
: 
// <= php 5 
$file = file_get_contents(&#39;./people.txt&#39;, true); 
// > php 5 
$file = file_get_contents(&#39;./people.txt&#39;, file_use_include_path); //打开本地文本


本文地址:

转载随意,但请附上文章地址:-)

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn