problem with adding root path using php domdocument
I would like to add root path of the site for those anchor tag which have not root path using php dom document, Till now a have made a function to do this with str_replace function but for some links its adding three and for times root path. Then what i sh开发者_开发百科ould to edit in this function.
Problem:= The problem is its adding three and for times root path for every anchor tag, and not for some. $HTML variable has many anchor tags, about above 200 links. And also same for images.
I know that its very dirty question, but what i have missed, i cant getting.
function addRootPathToAnchor($HTML)
{
$tmpHtml = '';
$xml = new DOMDocument();
$xml->validateOnParse = true;
$xml->loadHTML($HTML);
foreach ($xml->getElementsByTagName('a') as $a )
{
$href = $a->getAttribute('href');
if(strpos($href,'www' > 0))
continue;
else
$HTML = str_replace($href,"http://www.mysite.com/".$href,$HTML);
}
return $HTML;
}
I see some problems in your code:
- The decision whether or not an URI has a full root path (is a fully qualified URI) or not.
- You're not resolving relative URLs to the base URL. Just appending does not do the job.
- The function returns a DomDocument Object and not a string. I assume you don't want that but I don't know, you have not written in your question.
How to detect if a URL is a relative one.
Relative URLs don't specifiy a protocol. So I would check for that to determine whether or not a href attribute is a fully qualified (absolute) URI or not (Demo):
$isRelative = (bool) !parse_url($url, PHP_URL_SCHEME);
Resolving a relative URL to a base URL
However this won't help you to properly resolve a relative URL to the base URL. What you do is conceptually broken. It's specified in an RFC how to resolve a relative URI to the base URL (RFC 1808 and RFC 3986). You can use an existing library to just let the work do for you, a working one is Net_URL2:
require_once('Net/URL2.php'); # or configure your autoloader
$baseUrl = 'http://www.example.com/test/images.html';
$hrefRelativeOrAbsolute = '...';
$baseUrl = new Net_URL2($baseUrl);
$urlAbsolute = (string) $baseUrl->resolve($hrefRelativeOrAbsolute);
Instead of if(strpos($href,'www' > 0))
you should use if(strpos($href,'www') !== false)
.
The > 0
was inside the function-call (strpos()
).
精彩评论