全部博文(389)
发布时间:2013-08-30 10:35:19
1.file_get_contents <?php $url = "http://www.jb51.net"; $contents = file_get_contents($url); //如果出现中文乱码使用下面代码 //$getcontent = iconv("gb2312", "utf-8",$contents); echo $contents; ?> 2.curl <?php $url = "http://www.jb51.net".........【阅读全文】