?
| Current Path : /home/webyoo/www/backup/allback/kanity.com/save0807bh/ |
| Current File : /home/webyoo/www/backup/allback/kanity.com/save0807bh/test.php |
<?
function image($url){
$cont = file_get_contents($url);
$masque = '#<img.*src="(.*)".*>#iU';
preg_match($masque, $cont, $match);
$final=strtolower($match[1]);
if($final[0]!="h" && $final[1]!="t" && $final[2]!="t" && $final[3]!="p"){
$pos = strpos($url, './');
$pos += ($pos) ? 2 : 0;
$final= substr($url, $pos) . $final;
}
return $final;
}
echo image('http://docteurs.co.il/');
?>