Tengo un problemilla con el código, quiero leer de un texto url's para dejar las urls solo con el dominio, pero me salta: Resource id #3 y no se porque.
Os adjunto el código
Código HTML:
<?php
function saca_dominio($url){
$protocolos = array('http://', 'https://', 'ftp://', 'www.');
$url = explode('/', str_replace($protocolos, '', $url));
return $url[0];
}
$file = fopen("texto.txt", "r") or exit("Unable to open file!");
//Output a line of the file until the end is reached
while(!feof($file)) {
echo saca_dominio(fgets($file)). "<br />";
}
fclose($file);
?>
Un saludo