gpt4 book ai didi

父类不能在静态上下文中使用 PHP const/static 变量

转载 作者:可可西里 更新时间:2023-11-01 00:26:40 25 4
gpt4 key购买 nike

出于某种原因(哪个?),子类中定义的 PHP 常量/静态变量在父类的静态上下文中不可用。

为什么?

示例 1:

class Model{
function getAll(){
$query = "SELECT * FROM " . self::DATABASE_TABLE_NAME;
// ...
}
}

class Post extends Model{
const DATABASE_TABLE_NAME = 'post';
}

$p = Post::getAll();

当我运行时,我得到:

Fatal error: Undefined class constant 'DATABASE_TABLE_NAME' on line 3 

($query = ...的行)

示例 2:

class Model{
function getAll(){
$query = "SELECT * FROM " . self::$DATABASE_TABLE_NAME;
// ...
}
}

class Post extends Model{
static $DATABASE_TABLE_NAME = 'post';
}

$p = Post::getAll();

然后我得到:

Fatal error: Access to undeclared static property: Model::$DATABASE_TABLE_NAME on line 3

(同一行)

最佳答案

PHP5.3 介绍 late static binding — 这就是您要找的。

class ParentClass {
public function getAll() {
var_dump('Get all from ' . static::TABLE_NAME);
}
}

class ChildClass extends ParentClass {
const TABLE_NAME = 'my_table_name';
}

$c = new ChildClass();
$c->getAll(); // Get all from my_table_name

编辑:

但是你应该设计你的类有点不同。上述解决方案依赖于语言动态(您可以引用甚至不存在的东西(例如类常量))。在这样一个简单的示例中,一切都很好,但在实际情况中,这会导致生成可怕且难以维护的代码。

最好强制传递的类(ChildClass)实现一些返回表名的方法:

abstract class ParentClass {
// getAll function

abstract protected function getTableName();
}

class ChildClass extends ParentClass {
// You have to implement this method
protected function getTableName() {
return 'table name';
}
}

关于父类不能在静态上下文中使用 PHP const/static 变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5019998/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com