您的位置:

php获取虚拟目录,php获取虚拟目录内容

本文目录一览:

PHP怎么获取文件目录权限

PHP 获取文件目录权限函数fileperms,使用这个函数可以文件或者目录属性。

例子程序:

?php

$perms = fileperms('/etc/passwd');

if (($perms  0xC000) == 0xC000) {

    // Socket

    $info = 's';

} elseif (($perms  0xA000) == 0xA000) {

    // Symbolic Link

    $info = 'l';

} elseif (($perms  0x8000) == 0x8000) {

    // Regular

    $info = '-';

} elseif (($perms  0x6000) == 0x6000) {

    // Block special

    $info = 'b';

} elseif (($perms  0x4000) == 0x4000) {

    // Directory

    $info = 'd';

} elseif (($perms  0x2000) == 0x2000) {

    // Character special

    $info = 'c';

} elseif (($perms  0x1000) == 0x1000) {

    // FIFO pipe

    $info = 'p';

} else {

    // Unknown

    $info = 'u';

}

在IIS下PHP,为什么_SERVER['DOCUMENT_ROOT']无法获取跟目录地址?

你这个问题理论上是不会出现,虽然我对iis+php不是太熟悉,只有几个个可能:

1、你现在是在虚拟目录下。

2、iis本来就和php不搭调。

3、你还真的碰到麻烦了。

解决办法:

1、你把程序移动到实际目录下实施。

2、换服务器软件,改为php+apech(和apeche搭调,功能更多)

3、等php开发团队发现这个问题吧.....

apache怎样建立虚拟目录?

1、进入Apache的conf目录

2、打开httpd.conf文件输入:

2.1:查找IfModule alias_module

2.2:

ScriptAlias /cgi-bin/ "D:/Program Files/wamp/server/Apache2.2/cgi-bin/"

的后面输入:

Alias /php "F:/www_php"

2.3:

注意:虚拟目录为php

3、另一种方法:

3.1:查找# Virtual hosts

3.2:

将# Include conf/extra/httpd-vhosts.conf前面的“#”去掉

3.3:

打开Apache目录下Apache2.2\conf\extra\httpd-vhosts.conf文件

3.4:在文件末尾添加

IfModule alias_module

Alias /php "F:/www_php"

/IfModule alias_module

4、重启Apache

END

测试

1在浏览器中输入即可访问对应的目录

php中如何获得服务器的根目录

需要准备的材料分别是:电脑、php编辑器、浏览器。

1、首先,打开php编辑器,再新建php文件,例如:index.php。

2、在index.php中,输入:echo $_SERVER['DOCUMENT_ROOT'];。

3、浏览器运行index.php页面,此时会打印出到服务器的根目录。

php 获取当前目录所有文件夹名 及下级目录文件夹名 求代码详解

把这个文件放到\wamp\www\ 这里,然后运行。

?php

if (isset($_GET['dir'])){ //设置文件目录

$basedir=$_GET['dir'];

}else{

$basedir = '.';

}

checkdir($basedir);

function checkdir($basedir)

{

if ($dh = opendir($basedir)) {

while (($file = readdir($dh)) !== false) {

if ($file != '.' $file != '..'){

if (!is_dir($basedir."/".$file)) {

echo "filename: $basedir/$file br";

}else{

$dirname = $basedir."/".$file;

checkdir($dirname);

}

}

}

closedir($dh);

}

}

?

[以下于为题无关]

吗蛋,代码前的空格都没了,这不是我去掉的哦,是百X把空格全去了,有强迫症表示不能接受啊...........