redarrow Posted August 30, 2006 Share Posted August 30, 2006 Hi there can you point me in the right syntex codes for me to be able to cheek if a link exist on someones website cheers. Link to comment https://forums.phpfreaks.com/topic/19091-solvedif-link-exist-on-a-site-cheers/ Share on other sites More sharing options...
redarrow Posted August 30, 2006 Author Share Posted August 30, 2006 solved[code]<?php function check_back_link($remote_url, $your_link) { $match_pattern = preg_quote(rtrim($your_link, "/"), "/"); $found = false; if ($handle = @fopen($remote_url, "r")) { while (!feof($handle)) { $part = fread($handle, 1024); if (preg_match("/<a(.*)href=[\"']".$match_pattern. "(\/?)[\"'](.*)>(.*)<\/a>/", $part)) { $found = true; break; } } fclose($handle); } return $found; } // example: //if (check_back_link("http://www.all4yourwebsite.com", "http://www.finalwebsites.com")) echo "link exists"; ?> [/code] Link to comment https://forums.phpfreaks.com/topic/19091-solvedif-link-exist-on-a-site-cheers/#findComment-82596 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.