我在我的 win 7 上安装了 Zend Framework 2(Zend Framework + Zend Server)。在里面Zend/Apache2/htdocs/hello1.php
,我放了下面的脚本:
<?php
require_once('Zend/Registry.php');
$registry = Zend_Registry::getInstance();
$registry['name'] = 'Quentin Zervaas';
echo sprintf('My name is %s', $registry['name']);
?>
然后我运行http://localhost/hello1.php
,它显示:我的名字是 Quentin Zervaas
我的问题是:对于require_once('Zend/Registry.php');
htdocs文件夹下的这一行,是dummy.php、favicon.ico、index.html、hello1.php,没有Zend文件夹,那么这一行是如何工作的呢?