6

我目前正在研究Practical Web 2.0 Appications并且遇到了一些障碍。我试图让 PHP、MySQL、Apache、Smarty 和 Zend 框架都正常工作,这样我就可以开始构建应用程序了。我已经获得了 Zend 工作的引导文件,如下所示:

<?php
    require_once('Zend/Loader.php');
    Zend_Loader::registerAutoload();

    // load the application configuration
    $config = new Zend_Config_Ini('../settings.ini', 'development');
    Zend_Registry::set('config', $config);


    // create the application logger
    $logger = new Zend_Log(new Zend_Log_Writer_Stream($config->logging->file));
    Zend_Registry::set('logger', $logger);


    // connect to the database
    $params = array('host'     => $config->database->hostname,
                    'username' => $config->database->username,
                    'password' => $config->database->password,
                    'dbname'   => $config->database->database);

    $db = Zend_Db::factory($config->database->type, $params);
    Zend_Registry::set('db', $db);


    // handle the user request
    $controller = Zend_Controller_Front::getInstance();
    $controller->setControllerDirectory($config->paths->base .
                                        '/include/Controllers');

    // setup the view renderer
    $vr = new Zend_Controller_Action_Helper_ViewRenderer();
    $vr->setView(new Templater());
    $vr->setViewSuffix('tpl');
    Zend_Controller_Action_HelperBroker::addHelper($vr);

    $controller->dispatch();
?>

这调用了 IndexController。使用此 Templater.php 使用 Zend 实现 Smarty 时出现错误:

<?php
    class Templater extends Zend_View_Abstract
    {
        protected $_path;
        protected $_engine;

        public function __construct()
        {
            $config = Zend_Registry::get('config');

            require_once('Smarty/Smarty.class.php');

            $this->_engine = new Smarty();
            $this->_engine->template_dir = $config->paths->templates;
            $this->_engine->compile_dir = sprintf('%s/tmp/templates_c',
                                                  $config->paths->data);

            $this->_engine->plugins_dir = array($config->paths->base .
                                                '/include/Templater/plugins',
                                                'plugins');
        }

        public function getEngine()
        {
            return $this->_engine;
        }

        public function __set($key, $val)
        {
            $this->_engine->assign($key, $val);
        }

        public function __get($key)
        {
            return $this->_engine->get_template_vars($key);
        }

        public function __isset($key)
        {
            return $this->_engine->get_template_vars($key) !== null;
        }

        public function __unset($key)
        {
            $this->_engine->clear_assign($key);
        }

        public function assign($spec, $value = null)
        {
            if (is_array($spec)) {
                $this->_engine->assign($spec);
                return;
            }

            $this->_engine->assign($spec, $value);
        }

        public function clearVars()
        {
            $this->_engine->clear_all_assign();
        }

        public function render($name)
        {
            return $this->_engine->fetch(strtolower($name));
        }

        public function _run()
        { }
    }
?>

我加载页面时遇到的错误是这样的:

Fatal error: Call to a member function fetch() on a non-object in /var/www/phpweb20/include/Templater.php on line 60

我知道它没有将 $name 视为对象,但我不知道如何解决这个问题。控制器不应该引用 index.tpl 吗?我无法发现 $name 变量代表什么以及如何解决此问题以使基础正常工作。

非常感谢您的任何帮助!

4

4 回答 4

5

问题不在于 $name 变量,而在于 $_engine 变量。它目前是空的。您需要验证 Smarty.class.php 的路径规范是否正确。

你可以试试这个来开始你的调试:

$this->_engine = new Smarty();
print_r($this->_engine);

如果结果证明 $_engine 在那个阶段是正确的,那么验证它是否仍然正确地填充在 render() 函数中。

于 2008-10-31T17:50:40.143 回答
0

Zend 有一个创建模板系统的示例,该系统在此处实现 Zend_View_Interface:http: //framework.zend.com/manual/en/zend.view.scripts.html#zend.view.scripts.templates.interface

这可能会节省您尝试调试自定义解决方案的时间。

于 2008-11-10T01:04:32.807 回答
0

从类中删除 __construct 方法解决了我面临的类似问题。

于 2011-02-07T10:40:00.533 回答
0

重命名__construct()Tempater()我工作。

于 2012-01-19T00:42:32.303 回答