Cita:
Iniciado por Panino5001
Parece ser un problema de límites. Probá así:
Código PHP:
<?php
ini_set('pcre.backtrack_limit', 10000000);
$url='http://www.soccerstand.com/soccer/results/country/8/Spain';
$web = file_get_contents($url);
preg_match_all('/\<table(.*?)\>(.*?)\<\/table\>/is',$web, $matches);
echo "<pre>";print_r($matches);echo "</pre>";
?>
Qué grande, ese era el problema el limite de esa variable, que por cierto no veo en mi php.ini
Muchas gracias a todos
