PHP mySQLi:: MySQL server has gone away

2019-09-02 05:35发布

问题:

I'm trying to append a hush database directly from php.

$mysqli->query(file_get_contents('huge.sql'));

but I'm getting :

Warning: mysqli::query(): MySQL server has gone away in 

I was add those 2 line at the beginning of my php code :

ini_set('mysql.connect_timeout',3000);
ini_set('default_socket_timeout',3000);

Not very helpful...