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
と、次のように表示されます。私の名前はクエンティン・ゼルヴァースです
私の質問は: require_once('Zend/Registry.php');
htdocs フォルダーの下のこの行では、dummy.php、favicon.ico、index.html、hello1.php であり、Zend フォルダーはありません。この行はどのように機能しますか?