我正在尝试创建一个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( );
问题是我想在每个孩子上为同一个名字命名,所以我可以很容易地移动它们,但是我得到的错误是类名不能相同(预期)。
我该如何解决这个问题?我想让多个子类能够添加到父类中的变量。
感谢。
答案 0 :(得分:2)
你不能。它就这么简单。
这也很有道理。如果您需要在同一个类上进一步的功能,只需重构它。如果你需要一个子类,请扩展它。