本文目录一览:
php Study怎么看根目录在哪啊
就是你安装在哪了,自已选的目录。如果忘记了,但phpstudy开着,点其他选项菜单,网站根目录,再往上两层就是phpstudy的目录 了。
PHP下如何得到站点根目录
在站点根目录下建立1.php文件,内容如下
?php
echo dirname(__FILE__);
// dirname 是获取文件的目录部分,
// __FILE__ 这个魔术常量呢 是当前文件的路径+文件名
// 两者组合起来可以得到站点的根目录
?
linux的php安装目录在哪
1、首先,连接相应linux主机,进入到linux命令行状态下,等待输入shell指令。
2、在linux命令行下输入shell指令:find / -name *php*。
3、键盘按“回车键”运行shell指令,此时会看到php安装目录在/usr/local/lib/php。
php中如何获得服务器的根目录
需要准备的材料分别是:电脑、php编辑器、浏览器。
1、首先,打开php编辑器,再新建php文件,例如:index.php。
2、在index.php中,输入:echo $_SERVER['DOCUMENT_ROOT'];。
3、浏览器运行index.php页面,此时会打印出到服务器的根目录。
php怎么判断当前目录是否为根目录
?php
//根目录
$document_root = $_SERVER["DOCUMENT_ROOT"];
//当前目录
$dir = dirname(__FILE__);
if ($document_root == $dir) {
echo "same";
}else{
echo "different";
}
?