php如何获取apache的路径

WBOY
Release: 2016-06-06 20:45:00
Original
1581 people have browsed it

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>
Copy after login

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

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template