【发布时间】:2011-09-08 02:30:14
【问题描述】:
致命错误:在第 131 行的 /home/iracersr/public_html/atk4/lib/AbstractObject.php 中找不到类“h1”
我已经安装了最新版本,这是我使用的代码。有什么建议吗?
<?php
class page_index extends Page {
function init(){
parent::init();
$p=$this;
//Get Articles
$articles=$this->add('Model_News')->getRows();
$p->add('h1')->set('Latest News');
foreach($articles as $article){
$content=$this->add('view',null,null,array('view/blog'));
$content->template->set('title',$article['title']);
$content->template->set('content',$article['content']);
}
}
}
【问题讨论】:
标签: atk4