返回不含路径的文件字符串。
语法: string basename(string path);
返回值: 字符串
函数种类: 文件存取
将含路径及文件字符串中的路径拿掉,返回只含文件名的字符串。在 Windows 系列的操作系统中,路径可以是斜线 (/) 或反斜线 (\);在 UNIX 系列的操作系统,路径为斜线 (/)。
下例中的 $file 变量值为 "index.php"<?php$path = "/home/httpd/html/index.php";$file = basename($path);?>
dirname()