致命错误:第64行超过30秒的最大执行时间

时间:2012-03-14 23:13:01

标签: php html

我要做的是设置从sql检索的文本的样式。但是当我尝试预览时,我得到* 致命错误:第64行超过了30秒的最大执行时间。我尝试放入ini_set('max_execution_time',300);但仍然是同样的问题。这是代码:

    <?php
ini_set('max_execution_time', 300);
        $info="<h3>Τεχνικά Χαρακτηριστικά</h3>";
        $sql_1 = mysql_query("SELECT * FROM info WHERE parent = '$id'")or trigger_error(mysql_error());
        $counter = mysql_num_rows($sql_1);
        if($counter > 0){
            while ($row_1 = mysql_fetch_array($sql_1)){
                $temp = $row_1['add_info'] ."</br>";
                $temp = str_split($temp);
                for($i=0; $i <= sizeof($temp); $i++){
                    if($temp[$i] == ":"){
                            break;
                    }
                }
                $temp_1="<strong>";
                for($w=0; $w < sizeof($temp); $w++){
                    if($w < $i+1){
                        $temp_1 .= $temp[$w];
                    }else if($w = $i+1){
                        $temp_1 .="</strong>";
                    }else{//this is line 64
                        $temp_1 .= $temp[$w];
                    }
                }
                $info .= $temp_1 . "<br/>";
            }
        }
?>

1 个答案:

答案 0 :(得分:3)

您可能正在使用行}else if($w = $i+1){进入无限循环,将其更改为}else if($w == $i+1){}else if($w === $i+1){