为什么我不能在我的库存控制器中加载我的页面?
我使用ini_set('max_execution_time', 30)
和更高,但这似乎根本没有效果,我仍然收到错误。前 3 个模块运行良好,但最后一部分不是。
我使用 laravel 5.1 和 Laragon
public function getIndex()
{
ini_set('max_execution_time', 30);
$in_transit = CartonMasterFile::getCount('I');
$received = CartonMasterFile::getCount('R');
$pending = CartonMasterFile::getCount('P');
$transferred = CartonMasterFile::getCount('T');
$dispatched = CartonMasterFile::getCount('D');
$total_boxes = CartonMasterFile::getTotalBoxes();
$total_quantity = CartonMasterFile::getTotalQuantity();
return;
}
不知道为什么 ini_set('max_execution_time', 30 or 300);
还是没有效果。