我正在尝试创建一个 php 类,它将从多个子类中获取数据并在最后显示值
class ManifestBuilder
{
static $manifest;
function __construct( )
{
$this->get_manifest( );
}
function get_manifest( )
{
include 'manifest.php';
include 'sub1/manifest.php';
include 'sub2/manifest.php';
var_dump ( ManifestBuilder::$manifest );
}
function add_manifest( $var )
{
ManifestBuilder::$manifest .= $var;
}
}
new ManifestBuilder( );
每个孩子都是这样的
class Manifest extends ManifestBuilder
{
function __construct( )
{
$this->manifest( );
}
function manifest( )
{
parent::add_manifest( 'manifest1' );
}
}
new Manifest( );
问题是我想为每个孩子命名相同的类,以便我可以轻松地移动它们,但我收到一个错误,即类名不能相同(预期)。
我该如何解决这个问题?我想让多个子类能够添加到父类中的变量。
谢谢。