Re: trim last folder in a path



Cool, thanks that worked!


Simon Bridgewater wrote:

There may be a simpler way but off the top of my head it should work..

$curdir = 'c:/www/trit/plants';
$dir_arr = explode('/',$curdir);
$last_folder = $dir_arr[sizeof($dir_arr)-1];
echo $last_folder;

"paul" <paul@xxxxxxx> wrote in message
news:ObednUVRDqAg9l3fRVn-gQ@xxxxxxxxxxxxxxxx

How do I trim last folder in a path.

$curdir = "c:/www/triteleia/plants"
I just want "plants"

Sorry, I always struggle with strings & can't even begin to figure this
one out.



.