我想创建我的类的一个新实例,并分配它的属性返回的值。这样做的原因是我正在创建一系列从调用类继承的方法,而不是使用我已经工作的静态方法。
我正在使用的例子:
public static function findById($id) {
$id = self::escapeParam($id);
$idVal = is_int($id) ? "i" : "s";
$sql = "SELECT * FROM ".static::$db_table." WHERE id = ? LIMIT 1";
return static::findByQuery($sql,$idVal,$id);
}
public static function findByQuery($sql,$bindChar = '',$bindVal = '') {
try {
$callingClass = get_called_class();
$object = new $callingClass;
$statement = Database::$connection->prepare($sql);
if(!empty($bindChar)) :
$statement->bind_param($bindChar, $bindVal);
endif;
if($statement->execute()) :
$result = $statement->get_result();
$object = $result->fetch_object();
endif;
$statement->close();
if(!empty($object)) :
return $object;
endif;
} catch(Exception $e) {
}
}
我试着写一个实例化方法,创建我的类的一个新实例,然后给对象的每个属性赋值,它从我做的教程中的数组返回的值。然而,这个教程相当过时,没有使用任何新的语法或绑定,所以我试图重做这个。
下面教程中的例子:
public static function find_by_id($id) {
global $database;
$the_result_array = static::find_by_query("SELECT * FROM " . static::$db_table . " WHERE id = $id LIMIT 1");
return !empty($the_result_array) ? array_shift($the_result_array) : false;
}
public static function find_by_query($sql) {
global $database;
$result_set = $database->query($sql);
$the_object_array = array();
while($row = mysqli_fetch_array($result_set)) {
$the_object_array[] = static::instantation($row);
}
return $the_object_array;
}
public static function instantation($the_record){
$calling_class = get_called_class();
$the_object = new $calling_class;
foreach ($the_record as $the_attribute => $value) {
if($the_object->has_the_attribute($the_attribute)) {
$the_object->$the_attribute = $value;
}
}
return $the_object;
}
private function has_the_attribute($the_attribute) {
return property_exists($this, $the_attribute);
}
我想从教程中做的是,使用一段时间返回我的结果作为数组,然后通过将构建的数组传递到static::instantation()
方法来分配一个变量,但它似乎从来没有正确工作过,因为我在调用类(例如Admin)中创建的任何公共函数都不被调用,因为它们不存在,因为类没有被实例化。
mysqli_result::fetch_object()
接受类名作为第一个参数。您可以将类名作为参数传递给该方法,并获得模型的实例。我不知道为什么你有这么多代码,但考虑我的例子,我写的基于你自己的代码:
<?php
class Model
{
public static function findByQuery(string $sql, ?string $bindChar = null, ?string $bindVal = null): ?static
{
$statement = Database::$connection->prepare($sql);
if ($bindChar) :
$statement->bind_param($bindChar, $bindVal);
endif;
$statement->execute();
$result = $statement->get_result();
return $result->fetch_object(static::class);
}
}
class User extends Model
{
private $id;
}
class Database
{
public static mysqli $connection;
}
mysqli_report(MYSQLI_REPORT_ERROR | MYSQLI_REPORT_STRICT);
Database::$connection = new mysqli('localhost', 'user', 'password', 'test');
$user = User::findByQuery('SELECT ? as id', 's', 'Dharman');
var_dump($user);
这个例子的输出是:
object(User)#4 (1) {
["id":"User":private]=>
string(7) "Dharman"
}
如您所见,代码使用后静态绑定创建了类的实例,并将值赋给私有属性,否则就不能这样做。
注:我的例子更简洁一些。我添加了参数类型并删除了许多不必要的代码。特别地,我去掉了空try-catch,这是一个糟糕的做法。
我现在已经让它工作了,尽管我觉得这可能不是最好的方法。
我主要是前端,所以如果有改进或最佳实践,请评论。
public static function findByQuery($sql,$bindChar = '',$bindVal = '') {
try {
$statement = Database::$connection->prepare($sql);
if(!empty($bindChar)) :
$statement->bind_param("$bindChar", $bindVal);
endif;
if($statement->execute()) :
$result = $statement->get_result();
$output = $result->fetch_object();
endif;
$statement->close();
if(!empty($output)) :
$class = get_called_class();
$object = new $class;
foreach(get_object_vars($output) as $key => $value) :
$object->$key = $value;
endforeach;
endif;
if(!empty($object)) :
return $object;
endif;
} catch(Exception $e) {
}
}
我最初的想法是声明一个对象,然后我认为PHP fetch_object调用会在初始化类后为我的对象分配它的属性,但事实并非如此。
因此,我所做的是,如果语句成功并且创建了结果对象,那么我就使用get_object_vars()命令获取对象属性和值,然后将它们作为键值对进行循环,为每个属性分配它的返回值。
我可以确认这是有效的,因为我现在可以从我的删除脚本中运行$admin->remove(),而不是我之前必须做的admin::remove($id);