我有下面的代碼:的foreach在PHP類返回僅1結果
Example.class.php
class Example {
public function functionArrayExample() {
$query = array();
// this foreach comes from a select that returns more than 1 results
foreach($someSelect as $exAS) {
$query[] = $exAS;
}
return $query;
}
}
的index.php
require_once("Example.class.php");
$example = new Example();
$selectExample = $example -> functionArrayExample();
die(var_dump($selectExample));
但是,只顯示1個結果(在數組中)(在die()
一行),爲什麼?由於查詢返回多於1個結果?
你能告訴我們SELECT語句以及它是如何用於給出'$ someSelect'數組的嗎? – Niols
你需要指定'$ someSelect'變量是什麼,因爲這個例子不是很明顯。 – Jakuje
你也可以發佈你如何從查詢中檢索行的代碼? –