Posted by Simon Bridgewater on 06/28/05 00:27
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@not.net> wrote in message
news:ObednUVRDqAg9l3fRVn-gQ@speakeasy.net...
> 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.
[Back to original message]
|