Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

não é possível carregar um arquivo html muito grande ao pegar


Tente aumentar o limite de memória em seu PHP.ini ou localmente para seu aplicativo usando o seguinte código:
// I'm setting the memory limit to 1024M, but it should work with less memory
ini_set('memory_limit','1024M');
// Enable error reporting - TO BE REMOVED BEFORE YOU GO TO PRODUCTION
error_reporting(E_ALL);
ini_set('display_errors', TRUE);
ini_set('display_startup_errors', TRUE);
ini_set('max_execution_time',5000);

$source=file_get_contents("C://xampp/htdocs/Champion/machine-
logs/LogPrinting03/RIPLOG.HTML");
$dom = new DOMDocument();

$dom->loadHTML($source);

echo $source;