尝试将文件夹名称设置为变量

时间:2015-03-11 20:40:39

标签: php

我的index.php存储在*** / 101 / index.php中。我想要做的是提取父文件夹名称并将其用作$ var。

我尝试了$var = getcwd() . "\n";,但它得到了整个结构等:c:/ wamp / www / HC / 101。甚至可以只取出行中的最后一个文件夹?

2 个答案:

答案 0 :(得分:1)

试试这个:

$dirname = __DIR__;
basename($dirname); //Returns the current file directory name

在您的示例中 c:/ wamp / www / HC / 101 应返回 101

答案 1 :(得分:0)

$directory = str_replace(dirname(__DIR__), null, __DIR__):basename(__DIR__)