Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何获取应用程序根目录的路径。在 Zend Framework 1 中您可以使用常量 APPLICATION_PATH,我们如何在 Zend Framework 2 中获得它?谢谢。
你不应该需要。如果您使用骨架应用程序,它会chdir()进入应用程序根目录;因此,将从该路径生成相对路径。如果您需要完全限定的路径,请调用getcwd().
chdir()
getcwd()