我有以下代码,仅用于调试目的:
<?php
if ($_FILES['productsFile']) {
ini_set("display_errors","on");
error_reporting(E_ALL);
ini_set('max_input_time ', 600000);
ini_set('memory_limit', '512M');
ini_set('max_execution_time', '180');
ini_set('post_max_size ', "250M");
ini_set('upload_max_filesize ', "250M");
setlocale( LC_ALL, 'en_US.UTF-8' );
$fileName = "ecom_productImport_".time();
move_uploaded_file($_FILES['productsFile']['tmp_name'], "myfoter/".$fileName) upload");
$handle = fopen($fileName, "r");
$start=0;
unset($fileName);
while (($data = fgetcsv($handle, 950000, ",")) !== FALSE) {
// some code that use insert and update queries
}
}
现在当我在命令行上运行此代码时 - 它运行没有问题但是当我从网页运行它时获取错误324(net :: ERR_EMPTY_RESPONSE):服务器关闭连接而不发送任何数据。< / p>
在循环中设置的任何变量都是未设置的,并且sql查询不会花费很长时间。我真的不知道为什么它会一直挂断。
我的网络服务器是apache 2,php版本是5.3.8