I can't get the links with Snoopy.class.ini in the version of PHP 4.3.2, but I can use it on the previous version, I don't know why ?
Can anyone help me ?
The code is listed in below.
Nothing I got in PHP 4.3.2.
Thank You
<?
include "Snoopy.class.inc";
$snoopy = new Snoopy;
$v_url = "http://yahoo.com/";
$snoopy->fetchlinks($v_url);
$link = $snoopy->results;
if (is_array($link)) {
foreach ($link as $value)
{
print "$value\n";
}
}
?>







Bookmarks