OW Debug - Notice
Message: Trying to access array offset on value of type null
File: /home/romarekl/public_html/sosyallift.com/ow_plugins/forum/controllers/topic.php
Line: 136
PHP BACKLINK CHECKER SCRIPT Forum | Sosyallift©
Loading...
 
tr
Konu yeri: Forum » General » World help support
Whordark
Whordark Ağustos 28 '15

This is probably the simplest script that anyone knowing (or even learning) PHP can create in about 15seconds. But I will still post it here just in case anyone is a total noob at PHP.

Purpose of this script: To check a certain given backlink on hundreds of webpages provided you know the URL of every webpage.

<?php

$source = file_get_contents("source.txt");

$needle = "www.IamtryingtocheckThisPage&quot;; //without http as I have imploded the http later in the script

$new = explode("n",$source);

foreach ($new as $check) {

$a = file_get_contents("http://&quot;.trim($check));

if (strpos($a,$needle)) {

$found[] = $check;

} else {

$notfound[] = $check;

}

}

echo "Matches that were found: n ".implode("n",$found)."n";

echo "Matches that were not found n". implode("n",$notfound);

?>

or Other way

<?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.abc.com&quot;, "http://www.xyz.com&quot;

)) echo "link exists";

?>

Düzenlendi... Whordark (Ağustos 28 '15)
Paylaş: