im newbe to Zend Framework,我想使用ZF教程创建一个网站,但无法使其工作,我在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
,但似乎一切都很好。
是不是因为托管服务提供商?
答案 0 :(得分:1)
您需要PHP版本&gt; = 5.3来支持命名空间。