I am writing one function for getting some different database query. Now things are going well but only need to get last directory name from defined path.
$qa_path=site_root('/learnphp/docs/');
I wan to get only docs
from above path. Here site_root is nothing but $_SERVER['DOCUMENT_ROOT']
So how can I get only docs
?
Thanks
Easiest way would be to use
basename($yourpath)
as you can see here: http://php.net/basenameProvided answer doesn't work if your string contains the file at the end, like :
gives
So if your string contains the file, don't forget to dirname it first
gives