downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | my php.net 
search for in the  

<Filesystem Functionschgrp>
Last updated: Thu, 26 Jun 2008

basename

(PHP 4, PHP 5)

basename — Returns filename component of path

Description

string basename ( string $path [, string $suffix ] )

Given a string containing a path to a file, this function will return the base name of the file.

Parameters

path

A path.

On Windows, both slash (/) and backslash (\) are used as directory separator character. In other environments, it is the forward slash (/).

suffix

If the filename ends in suffix this will also be cut off.

Return Values

Returns the base name of the given path .

ChangeLog

Version Description
4.1.0 The suffix parameter was added

Examples

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"
?>



add a noteadd a note User Contributed Notes
Returns filename component of path
There are no user contributed notes for this page.




<Filesystem Functionschgrp>
Last updated: Thu, 26 Jun 2008
show source | credits | sitemap | contact | advertising | mirror sites
Copyright © 2001-2005 The PHP Group
All rights reserved.
This unofficial mirror is operated at: http://phpbuilder.com/
Last updated: Tue Nov 1 20:20:59 2005 EST
Columns / Articles | Tips / Quickies | News | News Linking and RSS Feeds | Shared Code Library
Mail Archives | Support / Discussion Forums | Get Started! Links | Contribute! | Docs