如何获取当前目录的名称 - 而不是整个路径?

时间:2011-07-10 21:44:48

标签: php

  

可能重复:
  How to get the last dir from a path in a string

我正在使用getcwd()返回类似这样的内容:home/abc123/public_html/blah/myDir

如何修改此字符串以返回myDir

1 个答案:

答案 0 :(得分:5)

http://php.net/manual/en/function.basename.php

使用basename:

print basename("home/abc123/public_html/blah/myDir");
//Output: myDir

strpossubstr

$fullPath = "home/abc123/public_html/blah/myDir";
print substr($fullPath, strrpos($fullPath, "/") + 1);
//Output: myDir