相対パスを絶対パスに変換する
- //相対パスを絶対パスに変換します
-
- functionrelative_to_absolute($content, $feed_url) {
- preg_match('/(http|https|ftp):///', $feed_url, $protocol );
- $server_url = preg_replace("/(http|https|ftp|news):///", "", $feed_url);
- //オープンソース OSPhP.COM.CN
- $server_url = preg_replace("/ / .*/", "", $server_url);
- if ($server_url == '') {
- return $content;
- }
- if (isset($protocol[0])) {
- //オープンソースコードOSPhP.COm.CN
- $new_content = preg_replace('/href="//', 'href="'.$protocol[0].$server_url.'/', $content); /src ="//', 'src="'.$protocol[0].$server_url.'/', $new_content); //オープンソース OSPhP.COM.CN
- } else {
- $new_content = $content ;
- }
- $new_content を返す
- }
- ?>
-
コードをコピーします
| ;