質問

私はサイトに取り組んでおり、データベースのエントリに基づいてカテゴリメニューを動的に浸透させるこの実験スクリプトを作成しました。

それは1日働いてから突然停止しました。私はcontaridが必要に応じて変更しました、そしてそれは私にこのエラーメッセージを与えました

致命的なエラー:30秒の最大実行時間が/home1/advertbo/public_html/dev_area/origocloud/include/views/blog/dbget.phpで34行目

function getBlogMenu(){
$dbhost = 'localhost';
$dbuser = ' ';
$dbpass = ' ';

$con = mysql_connect($dbhost, $dbuser, $dbpass);
if (!$con)
  {
    die('Could not connect: ' . mysql_error());
  }

mysql_select_db("ado_ocblog", $con);

$htmlString = "";

$result = mysql_query(
    "SELECT *
    FROM subCat
    JOIN headCat ON subCat.headid = headCat.id
    ORDER BY headid ASC;");

$array = mysql_fetch_array($result);
mysql_close($con);

$pre = NULL;
$hc = 0;
$sc = 1;
while ($array) {
    if($pre == NULL){
        $pre = $row["headc"];
        $test[0][0]=$row["headc"];
        $test[0][1]=$row["subc"];

    }
    else
    {
        if($pre ==$row["headc"]){
            $sc++;
            $test[$hc][$sc] = $row["subc"];

        }
        else
        {
            $hc++;
            $sc = 1;
            $test[$hc][0]=$row["headc"];
            $test[$hc][$sc]=$row["subc"];
            $pre = $row["headc"];
        }
    }

}

foreach( $test as $arrays=>$cat)
{
        $first = TRUE;
        foreach($cat as $element)
        {
            if($first == TRUE)
            {
                $htmlString.= '<h3><a href="">'.$element.'</a></h3>
                        <div>
                            <ul>
                    ';
                $first = FALSE;
            }
            else
            {
                $htmlString.= '<li><a class="sub_menu" href="#">'.$element.'</a></li>';
            }

        }
        $htmlString.= '</ul> </div>';
}
return $htmlString;


}

私は本当に立ち往生しています、ページは私が関数を呼ぶポイントをタイミングし続けています

役に立ちましたか?

解決

これを試して:

while ($array = mysql_fetch_array($result)) {}

PHPドキュメントをご覧ください http://php.net/mysql_fetch_array

動作しない場合、SQLクエリは値を返しすぎてPHPの実行をクラックします

=]

他のヒント

一歩下がってあなたがしていることを見る時が来たと思います:)この関数はあなたが望むことをするべきです(あなたが与えた関数の無限ループの問題を修正したとしても、私はそれがどのように行動すると思いますかあなたはそれを望んでいます。):

function getBlogMenu(){
  $dbhost = 'localhost';
  $dbuser = ' ';
  $dbpass = ' ';

  $con = mysql_connect($dbhost, $dbuser, $dbpass);
  if (!$con)
  {
    die('Could not connect: ' . mysql_error());
  }

  mysql_select_db("ado_ocblog", $con);

  $htmlString = "";
  $result = mysql_query(
      "SELECT *
      FROM subCat
      JOIN headCat ON subCat.headid = headCat.id
      ORDER BY headid ASC;");

  // arrays can have strings as keys as well as numbers,
  // and setting $some_array[] = 'value'; (note the empty brackets []) 
  // automatically appends 'value' to the end of $some_array,
  // so you don't have to keep track of or increment indexes
  while ($row = mysql_fetch_assoc($result))
  {
    $test[$row["headc"]][] = $row["subc"];
  }

  // don't close the connection until after we're done reading the rows
  mysql_close($con);

  // $test looks like: array('headc1' => array('subc1', 'subc2', 'sub3'), 'headc2' => array('subc4', 'subc5'), ...)
  // so we step through each headc, and within that loop, step through each headc's array of subc's.
  foreach($test as $headc => $subc_array)
  {
    $htmlString.= '<h3><a href="">'.$headc.'</a></h3><div><ul>';
    foreach($subc_array as $subc)
    {
      $htmlString.= '<li><a class="sub_menu" href="#">'.$subc.'</a></li>';
    }
    $htmlString.= '</ul></div>';
  }

  return $htmlString;
}
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top