我已经用 PHP 编程很多年了,但是直到最近才开始使用类进行编程。我有以下 - 基本 - 用户类如下:
<?php
/* The class for constructing any user's information
*/
class User {
protected $userId, $email, $userGroup;
protected function getEmail() {
return $this->email;
}
protected function getUserId() {
return $this->userId;
}
protected function getUserGroup() {
return $this->userId;
}
public function __construct($userId='') {
if($userId) {
$select = mysql_query("SELECT userId, email, user_group FROM user WHERE userId = '$userId'");
while($user==mysql_fetch_array($select)) {
$this->email = $user[email];
$this->userId = $userId;
$this->userGroup = $user[user_group];
}
}
}
}?>
所以我知道我可以执行以下操作
<?php
$user = new User($userId);
echo $user->getEmail();
?>
显示给定 userId 的用户电子邮件地址。我想知道的是,什么是最好的方式——使用 OOP——来显示,比如说,40 个用户的电子邮件。显然创建 40 个用户对象会很愚蠢,因为那是 40 个 SQL 查询。在给定各种参数执行 SQL 之后,您是否会简单地创建一个用于返回多个用户数组的“用户”类?
IE
<?php
$getUsers = new Users('Tom');
// create 'Users' object where name is 'Tom'
print_r($users);
// prints the returned array of users?
?>
谢谢你的帮助。希望这很清楚。