View Single Post
Old 03-01-2008, 07:21 PM   #11 (permalink)
DeMo
The Contributor
 
DeMo's Avatar
 
Join Date: Jan 2008
Location: Brazil
Posts: 77
Thanks: 14
DeMo is on a distinguished road
Default

Use the basename function, it strips everything but the filename.
PHP Code:
$path "/home/httpd/html/index.php";
echo 
basename($path); // will show just "index.php"; 
Send a message via ICQ to DeMo Send a message via MSN to DeMo Send a message via Skype™ to DeMo
DeMo is offline  
Reply With Quote
The Following User Says Thank You to DeMo For This Useful Post:
Aaron (03-02-2008)