码迷,mamicode.com
首页 > 其他好文 > 详细

basename 和 dirname 文件名和目录名

时间:2015-05-27 12:00:17      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:

$path = "/home/httpd/html/index.php";
$file = basename($path);        // $file is set to "index.php"
$file = basename($path,".php"); // $file is set to "index"

dirname:

$path = "/etc/passwd";
$file = dirname($path); // $file is set to "/etc"

一个是取出目录名
一个是取出文件名

basename 和 dirname 文件名和目录名

标签:

原文地址:http://www.cnblogs.com/qinqiu/p/4532891.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!