0

错误输出:致命错误:超过 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;
}
4

1 回答 1

4

替换这一行:

for ($i=$firstValue; $i=$lastValue; $i++) {

有了这个:

for ($i=$firstValue; $i<=$lastValue; $i++) {

第二个表达式应该计算true为每个$i直到结束。

于 2012-07-13T10:01:06.377 回答