0

我是 Zend 框架的新手,我想使用 ZF 教程制作 1 个网站,但无法正常工作,我T_STRING/library/Zend/Mvc/Application.php on line 10. 10中的代码如下:

<?php
/**
 * Zend Framework (http://framework.zend.com/)
 *
 * @link      http://github.com/zendframework/zf2 for the canonical source repository
 * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
 * @license   http://framework.zend.com/license/new-bsd New BSD License
*/

namespace Zend\Mvc; <-- here is error.

use Zend\EventManager\EventManagerAwareInterface;
use Zend\EventManager\EventManagerInterface;
use Zend\ServiceManager\ServiceManager;
use Zend\Stdlib\ResponseInterface;

我去开始阅读如何声明namespace,但似乎一切都很好。可能是因为托管服务提供商?

4

1 回答 1

1

您需要 PHP 版本 >= 5.3 来支持命名空间。

于 2013-05-22T08:05:48.363 回答