私は自分のページの検索エンジンを持っています。結果として、各結果の配列キーを出力したいと思います。
だから私はこのコードを持っています:
$results = search($keywords);
$results_num = count($results); //what shows the message how many items were found
if (!empty($errors){
foreach ($results as $result){
echo "this is result: "
.$result['key']; //thought would be the solution, its not.
}
} else {
foreach ($errors as $error){
$error;
}
}
私も次のようなカウンターを使用してみました:
$results = search($keywords);
$results_num = count($results); //what shows the message how many items were found
$counter = 0;
if (!empty($errors){
foreach ($results as $result){
$counter++;
echo "this is result: "
.$counter;
}
} else {
foreach ($errors as $error){
$error;
}
}
私が思ったように機能せず、まだその専門家ではありません。ですから、これを解決する方法を教えてくれる人がいたら、本当にありがたいです。どうもありがとう。