![]() |
Home
iRate! IceMelon IM Tutorials Headlines CoolSites PHP Functions |
Most Referenced Functions » google_pagerank() » preg_replace() » imagecreatefrompng() » site_pageranks() » imagepng() » imagedestroy() » imagestring() » imagecolorallocate() » htmlentities() » fopen() » preg_match() » header() » getimagesize() » htmlspecialchars() » session_start() » ob_start() » strstr() » ob_flush() » preg_match_all() » strpos() » flush() » setcookie() » str_replace() » array2vars() » nl2br() » preg_split() » ereg() » urlencode() » ereg_replace() » readgzfile() Become a sponsor for $15/month. Link is sitewide - PR5 homepage, 20+ PR4 pages, 90+ PR3 pages. Email dave[AT]icemelon[D0T]c0m. |
PHP Functions
Function: basename (PHP 3, PHP 4, PHP 5) basename -- Returns filename component of pathDescriptionstring basename ( string path [, string suffix] )Given a string containing a path to a file, this function will return the base name of the file. If the filename ends in suffix this will also be cut off. On Windows, both slash ( / ) and backslash ( \ ) are used as directory separator character. In other environments, it is the forward slash ( / ).
Example 1. basename() example <?php $path = "/home/httpd/html/index.php"; $file = basename($path); // $file is set to "index.php" $file = basename($path, ".php"); // $file is set to "index" ?> Note: The suffix parameter was added in PHP 4.1.0. Related Function(s) |