我想知道是否有办法使用Zend框架在PHP中获取本地路径。该应用程序位于mamp的htdocs文件夹中,如下所示:
Application_Path/frontend/public/site/destinationFolder
我想在Zend中获得这条路,或者至少是它的一部分?
也许像
signed
有人可以帮我解决这个问题吗?
谢谢堆!
答案 0 :(得分:0)
你可以为此use the php function getcwd();
(它返回当前的工作目录):
$rootPath = getcwd();
所以公共文件夹是:
$publicPath = getcwd() . DIRECTORY_SEPARATOR . 'public';
这是有效的,因为on line 6 of the index.php
file of your ZF2 application工作目录设置为此目录:
chdir(dirname(__DIR__));