Re: trim last folder in a path
- From: paul <paul@xxxxxxx>
- Date: Mon, 27 Jun 2005 14:44:58 -0700
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.
.