ホームページ >バックエンド開発 >PHPチュートリアル >相対パスを絶対パスに変換する_PHP チュートリアル
Gregarius の関数を抽出します。 Web ページ内の相対パスを絶対パスに自動的に変換できます。
functionrelative_to_absolute($content, $feed_url) {
preg_match('/(http|https|ftp):///', $feed_url, $protocol);
$server_url = preg_replace("/(http) |https|ftp|news):///", "", $feed_url);
$server_url = preg_replace("//.*/", "", $server_url);
if ($server_url == ' ') {T Return $Content
}
if (isset ($ Protocol [0])) {
$ New_Content = Preg_replace ('/href = "// ',' href =" '. $ Protocol [0] .$server_url.'/', $content);
$new_content = preg_replace('/src="//', 'src="'.$protocol[0].$server_url.'/', $new_content);
} else {
} $new_content = $content;
return $new_content;
;
http://www.bkjia.com/PHPjc/318187.html
www.bkjia.com