gpt4 book ai didi

php - mysql脚本自动停止

转载 作者:行者123 更新时间:2023-11-29 06:48:35 25 4
gpt4 key购买 nike

我这里有一小段代码:

<?php
//logic to connect to database and rest of the settings.
// ...................//
$res = mysql_query("select * from account"); //returns 1200 records
while($row = mysql_fetch_array($res)){
//some of the logical operations performed here.
if(condition){ //condition is not a variable. its result to be evaluated
updateDatabase($data1, $data2);
}else{
updateDatabase($data1, 0);
}
}
?>
<?php
function updateDatabase($data1, $data2){
//some logical operations
//updating database.
//for testing an echo statement whether success/fail
}
?>

由于此代码检索数以千计的记录和要对其执行的操作,因此在每种情况下都需要更新数据库。但是,如果我正在运行此 php 文件,那么它会在达到大约 1000 条记录后停止执行。

由于我是 php 的初学者,所以我无法知道这样做的原因。 有人可以帮我解决这个问题吗?

最佳答案

尝试增加 php.ini 文件中的 max_execution_time。根据您的 php 配置,脚本可能运行时间过长。

关于php - mysql脚本自动停止,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17083888/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com