Do you know how? Share a php function.. convert relative links to absolute.
coders.. the ultimate convert relative links to absolute links?
Collapse
X
-
coders.. the ultimate convert relative links to absolute links?
- Free Premium Domain Lists and Tools at Clickmojo.com
- For Sale: Obscenity.com
Tags: None -
Try this one:
$txt is your HTML code where you want to convert your relative links.function absolute_url($txt, $base_url){
$needles = array('href="', 'src="', 'background="');
$new_txt = '';
if(substr($base_url,-1) != '/') $base_url .= '/';
$new_base_url = $base_url;
$base_url_parts = parse_url($base_url);
foreach($needles as $needle){
while($pos = strpos($txt, $needle)){
$pos += strlen($needle);
if(substr($txt,$pos,7) != 'http://' && substr($txt,$pos,8) != 'https://' && substr($txt,$pos,6) != 'ftp://' && substr($txt,$pos,9) != 'mailto://'){
if(substr($txt,$pos,1) == '/') $new_base_url = $base_url_parts['scheme'].'://'.$base_url_parts['host'];
$new_txt .= substr($txt,0,$pos).$new_base_url;
} else {
$new_txt .= substr($txt,0,$pos);
}
$txt = substr($txt,$pos);
}
$txt = $new_txt.$txt;
$new_txt = '';
}
return $txt;
}hacker 4 hire. -
Comment
-
Custom Software Development, email: woj#at#wojfun#.#com to discuss details or skype: wojl2000 or gchat: wojfun or telegram: wojl2000
Affiliate program tools: Hosted Galleries Manager Banner Manager Video Manager
Wordpress Affiliate Plugin Pic/Movie of the Day Fansign Generator Zip ManagerComment
-
was mostly looking for a better function than I was already using. It has to account for the '../../blah.jpg' type links too, etc.. I have it working but it's not "pretty" yet.- Free Premium Domain Lists and Tools at Clickmojo.com
- For Sale: Obscenity.com
Comment

Comment