PHPとMySQLの使用私は2つの配列を生成しました。これらの配列をループして、両方からデータを取得し、1つの文で一緒に表示したいと思います。PHP foreachループとデータ検索
foreach ($items as $item) {
if(isset($item->item_title)) {
$itemTitle = $item->item_title;
}
// var_dump($itemTitle);
// string(7) "Halfway" string(5) "Story" string(6) "Listen"
}
foreach ($aData["Items"]["Item"] as $a) {
if (isset($a['description'])) {
$aDescription = $a['description'];
}
// var_dump($aDescription );
// string(4) "Good" string(6) "Strong" string(2) "OK"
}
?>
希望の結果;
The title is Halfway and the description is Good.
The title is Story and the description is Strong.
The title is Listen and the description is OK.
// etc
// etc
はforeach
ループを入れ子にすることが可能であり、またはより良い、より効率的な方法はありますか?
入力配列を共有してください。 –
残念ながら私はそのデータを持っていません。特定の方法や機能がある場合は、自分で見てもらうことをお勧めします。私はちょうど正しい方向に振る舞いが必要です!論理は私を捨てている:/ –
私のポストがあなたが期待しているのと同じようにあなたを助けてくれることを願っています。 –