Home  >  Article  >  Backend Development  >  php如何获取apache的路径

php如何获取apache的路径

WBOY
WBOYOriginal
2016-06-06 20:45:001580browse

php如何获取apache的路径

图片是我phpinfo的截图。
是可以获取apache的路径的,有没有一个函数可以在php里直接获取呢?

回复内容:

php如何获取apache的路径

图片是我phpinfo的截图。
是可以获取apache的路径的,有没有一个函数可以在php里直接获取呢?

这个一般就是问google最快捷。搜索你的标题,通常第一条就是你要的。

你可以先找到你的 httpd.conf 文件
然后

<code class="lang-shell">➜  Documents  cat /private/etc/apache2/httpd.conf | grep ServerRoot| grep -v "#"
ServerRoot "/usr"
</code>

把这个命令放到 php 的 exec 或是 system 之类的命令执行就可以了

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:Linux convert命令有什么用Next article:数据库操作类