资源简介

完全最新的新闻实事,没有任何广告,为您索引最新实事。www.xiaogg.org 为您打造最全,最新,更新最快的实事新闻索引。 新闻更新地址:http://www.xiaogg.org/news.php

资源截图

代码片段和文件信息

function curl_file_get_contents($durl$type=0){//如果服务器支持curl(执行速度快)的话type默认即可如果不支持请改为1(file)或2(file_get_contents)
   if($type==1){
  $r=file($durl);$r = implode(‘‘ $r);
}else if($type==2){
   $r=file_get_contents($durl);
}else{
   $ch = curl_init();
   curl_setopt($ch CURLOPT_URL $durl);
   curl_setopt($ch CURLOPT_TIMEOUT 5);
   curl_setopt($ch CURLOPT_USERAGENT _USERAGENT_);
   curl_setopt($ch CURLOPT_REFERER_REFERER_);
   curl_setopt($ch CURLOPT_RETURNTRANSFER 1);
   $r = curl_exec($ch);
   curl_close($ch);
}
   return $r;
}
function direction($url$type=0){
$key=“http://“.str_replace(“http:/“““str_replace(“http//“““str_replace(“http:“““str_replace(“http://“““$url))));
$key=str_replace(“_““.“$key);
$allow=array(“people.com.c

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        1521  2010-11-19 16:48  news.php
     文件        1375  2010-11-19 17:22  function.php
     文件        1039  2010-11-19 17:22  show.php

评论

共有 条评论