class DOM extends ContentTag {
private $body;
private $head;
public function Head() {
return $head;
}
public function Body() {
return $body;
}
public function __construct() {
parent::__construct('html');
Tag::Extras('xmlns="http://www.w3.org/1999/xhtml"');
$head = new ContentTag('head');
$body = new ContentTag('body');
ContentTag::AddTag($head);
ContentTag::AddTag($body);
$head->AddTag(MakeTag('meta')->Extras('http-equiv="Content-Type" content="text/html; charset=utf-8"'));
}
public function Emit() {
echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">';
Emit();
}
}
// top.php
$pagediv = 0;
$view = new DOM();
$view->Head()->AddTag(MakeLink('css/style.css', 'stylesheet', 'text/css'));
此代码在 bottom 行上失败,其中访问变量然后调用AddTag失败 - 即使我在DOM的构造函数中对该确切变量调用AddTag就好了。代码解析得很好 - 这是一些奇怪的优先级......还是什么?
答案 0 :(得分:2)
您需要使用$head
设置并返回$this->head
属性。
否则$head
属性将为NULL
。