错误输出:致命错误:超过30秒的最长执行时间
我认为那里没有任何错误的东西。有什么问题?
function advancedSearchAgeOption($selectName, $selectID, $firstValue, $lastValue) {
$selectBox.='<select name="'.$selectName.'" id="'.$selectID.'">';
for ($i=$firstValue; $i=$lastValue; $i++) {
$selectBox.='<option value="'.$i.'">'.$i.'</option>';
}
$selectBox.='</select>';
return $selectBox;
}
答案 0 :(得分:4)
替换此行:
for ($i=$firstValue; $i=$lastValue; $i++) {
有了这个:
for ($i=$firstValue; $i<=$lastValue; $i++) {
对于每个true
,第二个表达式应评估为$i
直到结束。