获取Zend Framework中htdocs文件夹的本地路径

时间:2016-05-17 10:35:42

标签: php zend-framework path zend-framework2

我想知道是否有办法使用Zend框架在PHP中获取本地路径。该应用程序位于mamp的htdocs文件夹中,如下所示:

Application_Path/frontend/public/site/destinationFolder

我想在Zend中获得这条路,或者至少是它的一部分?

也许像

signed

有人可以帮我解决这个问题吗?

谢谢堆!

1 个答案:

答案 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__));