db内のすべてのユーザーを取得し、それらを2つの要素を持つ配列に配置したいと思います。1つはすべてのユーザーIDを持つ配列を含み、もう1つはすべてのユーザー名を持つ配列を含みます。ただし、以下のコードはこの目的では機能しません。$ field1(最初のユーザーのユーザーID)と$ field2(最初のユーザーのユーザー名)のデータベースに最初のユーザーを配置します。
この問題を解決する方法についてサポートが必要です。
基本的に、私が望んでいるのは、次のことを達成することです。
$userIds = array(1, 2, 3, 4, 5); // The id's from all users in an array
$userNames = array("Nisse", "Kalle", "Svenne", "Jonna", "Linda"); // The usernames of all the users in an array
// The arrays with user id's and usernames should be put in a new array that's returned from the function.
$users = array(
[0] => $userIds,
[1] => $userNames
);
UserHandler.phpから:
class UserHandler {
private $m_db = null;
public function __construct(Database $db) {
$this->m_db = $db;
}
public function GetAllUsers() {
$userArray = array();
$query = 'SELECT * FROM Users';
$stmt = $this->m_db->Prepare($query);
$userArray = $this->m_db->GetUsers($stmt);
return $userArray;
}
}
Database.phpから:
public function GetUsers(\mysqli_stmt $stmt) {
$userArray = array();
if ($stmt === FALSE) {
throw new \Exception($this->mysqli->error);
}
//execute the statement
if ($stmt->execute() == FALSE) {
throw new \Exception($this->mysqli->error);
}
$ret = 0;
if ($stmt->bind_result($field1, $field2, $field3) == FALSE) {
throw new \Exception($this->mysqli->error);
}
$stmt->fetch();
$stmt->Close();
echo $field1 // "1"; <- userid of the first user in db table
echo $field2 // "Kalle" <- username of the first user in the db table
$userArray[] = $field1; // An array with all the user id's
$userArray[] = $field2; // An array with all the usernames
return $userArray;
}
dbテーブルは次のようになります 。userId| ユーザー名| パスワード