在单个PHP脚本上运行多个PHP脚本

时间:2013-12-01 06:35:34

标签: php mysql include batch-processing

我需要提取100多个excel并转换为mysql。 每个excel都有不同的格式。所以我创建了100个不同的php文件来导入每个excels,如下所示

format1.php
format2.php
format3.php 

等等

现在我需要批量运行每个脚本(不一定是并行运行)。就像完成format1.php之后我需要运行format2.php并进行运行直到脚本结束..我试过如下

main.php

include("format1.php");
include("format2.php");
include("format3.php");

这样做我遇到了最长执行时间的问题。我没有访问php.ini所以我不能改变最大执行时间。 ini_alter ini_set 都无效。

出路是什么

1 个答案:

答案 0 :(得分:0)

如果你可以使用这个功能:
set_time_limit(0);