首頁  >  文章  >  後端開發  >  相對路徑轉化成絕對路徑

相對路徑轉化成絕對路徑

WBOY
WBOY原創
2016-07-25 09:10:101153瀏覽
相对路径转化成绝对路径
  1. //相对路径转化成绝对路径
  2. function relative_to_absolute($content, $feed_url) {
  3. preg_match('/(http|https|ftp):///', $feed_url, $protocol);
  4. $server_url = preg_replace("/(http|https|ftp|news):///", "", $feed_url);
  5. //开源OSPhP.COM.CN
  6. $server_url = preg_replace("//.*/", "", $server_url);
  7. if ($server_url == '') {
  8. return $content;
  9. }
  10. if (isset($protocol[0])) {
  11. //开源代码OSPhP.COm.CN
  12. $new_content = preg_replace('/href="//', 'href="'.$protocol[0].$server_url.'/', $content);
  13. $new_content = preg_replace('/src="//', 'src="'.$protocol[0].$server_url.'/', $new_content); //开源OSPhP.COM.CN
  14. } else {
  15. $new_content = $content;
  16. }
  17. return $new_content;
  18. }
  19. ?>
复制代码


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