Gregarius에서 함수를 추출합니다. 웹 페이지의 상대 경로는 자동으로 절대 경로로 변환될 수 있습니다.
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 == '') {
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;
}
?>
위 내용은 경로 내용을 포함하여 경로 상대 경로를 절대 경로로 변환하는 방법을 소개합니다. PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.