用户名:
密 码: 记住
您当前的位置:首页 > 网络编程 > php教程

php把相对路径转换成绝对路径方法

时间:2015-01-23  来源:西部数据  作者:西部数据

我们经常会碰到采集内容时,要补全地址是吧,下面我们来看看这款php把相对路径转换成绝对路径方法吧,相对路径转化成绝对路径实例代码如下:

  1. function relative_to_absolute($content$feed_url) {  
  2.     preg_match('/(http|https教程|ftp):///'$feed_url$protocol);  
  3.     $server_url = preg_replace("/(http|https|ftp|news):///"""$feed_url);  
  4.     $server_url = preg_replace("//.*/"""$server_url); 
  5.  
  6.     if ($server_url == '') {  
  7.         return $content;  
  8.     } 
  9.  
  10.     if (isset($protocol[0])) {  
  11.         $new_content = preg_replace('/href="//''href="'.$protocol[0].$server_url.'/'$content);  
  12.         $new_content = preg_replace('/src="//''src="'.$protocol[0].$server_url.'/'$new_content);  
  13.     } else {  
  14.         $new_content = $content;  
  15.     }  
  16.     return $new_content;  
  17. //取得所有链接 
  18. function get_all_url($code){  
  19.         preg_match_all('/<as+href=["|']?([^>"' ]+)["|']?s*[^>]*>([^>]+)</a>/i',$code,$arr);  
  20.         return array('name'=>$arr[2],'url'=>$arr[1]);  
来顶一下
返回首页
返回首页
推荐资讯
WiFi太不安全:7岁女孩11分钟内入侵公共网络 WiFi太不安全:7岁女孩11分钟内入侵近期刚刚发布研究说WiFi网络能获得人们手机里多少私人信息,
不服跑个分?人工智能也出现“刷分”乱象 不服跑个分?人工智能也出现“刷分2014年,人工智能领域突然爆发,成为了科研和科技创业的热门
相关文章
    无相关信息
栏目更新
栏目热门