PHP opendir() - 如何获取一步UP的文件列表?

时间:2014-12-23 05:40:52

标签: php xampp directory-structure

一件简单的事情。想要通过添加更改XAMPP页面视图,以便可以在主页上查看所有项目文件夹(如WAMP)。我正在关注this blog post并且它工作得很好(尽管整个事情并不完全匹配)。我链接到左侧导航区域的projects.php页面,然后单击我可以获取所有项目文件夹。

但我希望主页上的所有项目列表,没有进一步的菜单点击。所以我试过,但失败了。我试过these code(我正在使用XAMPP 3.2.1)。

但是使用代码,我无法完成它。我对那里的两段代码感到困惑:

$handle = opendir(".");

if ( is_dir($file) && ($file != "..") && ($file != ".") ) {

由于我正在处理新的文件夹结构,我尝试使用:$handle = opendir("../"); - 但它始终缺少htdocs文件夹。

我甚至尝试过简单的方式(在htdocs/xampp/index.php中):

<frame name="content" src="start.php" marginwidth=20>
<frame name="content" src="../projects.php" marginwidth=20>

但最终失败了。

还尝试过:

$rp = realpath('../'); //showing: C:\xampp\htdocs
$handle = opendir("$rp"); //but opening the directory C:\xampp\htdocs\xampp

0 个答案:

没有答案