基本语法未解析的解决方法
尝试使用等号右侧的表达式定义类属性时, PHP 引发错误。这是因为 PHP 只允许原始值作为类常量和属性的默认值。
要绕过此限制,我们可以使用两步方法:
1。引入静态常量数组
在类中定义静态数组$_types。该数组将保存所有可能的常量值。
<code class="php">static protected $_types = null;</code>
2.创建一个检索常量值的方法
实现一个 getType() 方法,允许您按名称检索常量值。
<code class="php">static public function getType($type_name) { self::_init_types(); if (array_key_exists($type_name, self::$_types)) { return self::$_types[$type_name]; } else { throw new Exception("unknown type $type_name"); } } protected function _init_types() { if (!is_array(self::$_types)) { self::$_types = [ 'STRING_NONE' => 1 << 0, // ... include all constants 'STRING_HOSTS' => 1 << 6 ]; } }</code>
3.使用 getType() 初始化类属性
在构造函数中,您现在可以使用 getType() 方法初始化类属性。
<code class="php">function __construct($fString = null) { if (is_null($fString)) { $fString = self::getType('STRING_NONE') & self::getType('STRING_HOSTS'); } var_dump($fString); }</code>
通过利用此解决方法,您可以保留可读性和未来的可扩展性,同时遵守 PHP 的语法限制。
示例:
<code class="php">$SDK = new SDK(SDK::getType('STRING_HOSTS'));</code>
以上是如何在 PHP 中使用表达式值定义类属性?的详细内容。更多信息请关注PHP中文网其他相关文章!