如何在运行时生成或修改PHP类?
作者:互联网
schmittjoh/cg-library似乎是我需要的,但是根本没有文档.
This library provides some tools that you commonly need for generating
PHP code. One of it’s strength lies in the enhancement of existing
classes with behaviors.
给定A班:
class A {}
我想在运行时当然使用某种缓存机制(类A)进行修改,以使其实现给定的接口:
interface I
{
public function mustImplement();
}
…具有A类中方法mustImplement()的“默认”实现.
解决方法:
Note: OP needs PHP 5.3 (it was not tagged that way before), this question is a general outline for PHP 5.4.
您可以通过定义接口并添加包含这些接口的默认实现的特征来实现.
然后创建一个新的类定义
>从您的基础班开始,
>实现该接口,并
>使用默认特征.
有关示例,请参阅Traits in PHP – any real world examples/best practices?
您可以轻松地生成该类定义代码,然后存储并包含它,或者直接对其进行评估.
如果使新的类名包含其组成的所有信息(在您的情况下为基类名和接口),则可以防止轻易创建重复的类定义.
无需任何PHP扩展程序(如runkit)即可使用.如果您要进行序列化,甚至可以在运行时使用新接口在现有对象上进行重载,以防它们可以序列化/反序列化.
您可以在以下位置找到已实现此功能的代码示例:
> DCI-Account-Example-in-PHP / src / DCI / Casting.php(usage)
标签:php-5-3,php,runtime 来源: https://codeday.me/bug/20191012/1899459.html