Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
3  
Thanks but the file may or may not in the same directory. I mean just asking as not so experienced. – pixelngrain Jan 11 at 19:22

5 Answers

up vote 8 down vote accepted

Easiest way would be to use basename($yourpath) as you can see here: http://php.net/basename

share|improve this answer
ah this is most easiest solution i found. just quick question if there will be 3 or 4 sub level of direction will it still get last directory name? – pixelngrain Jan 11 at 19:54
Yes. Always the last name part of any path. No matter how many levels deep it is. It will either return the deepest directory or the filename, if one is present. – Till Helge Jan 11 at 19:57
This is perfect and your answer deserve to be selected answer. Thanks a lot. – pixelngrain Jan 11 at 19:58

Try explode('/', '/learnphp/docs/') to split the string into array locations. Then fetch the last location.

Here is more info: http://php.net/manual/en/function.explode.php

share|improve this answer
Doesn't deserve a down vote as it is a valid solution: just not the best one. – crush Jan 11 at 19:22
Why the downvotes on this? – Ibu Jan 11 at 19:22
This is a valid answer. It shouldn't be voted down because you think there may be a "better" way. – mjayt Jan 11 at 19:22
2  
Didn't down-vote but might use DIRECTORY_SEPARATOR. – ficuscr Jan 11 at 19:23
Thank you. Yeah, basename seems like a "better" way but this should work as well :) – c0d3Junk13 Jan 11 at 19:23
show 3 more comments

you can use this simple snippet:

$qa_path=site_root('/learnphp/docs/');
$qa_path = explode("/", $qa_path);
$qa_path = $qa_path[count($qa_path) - 1];
share|improve this answer
thanks \Let me try this. – pixelngrain Jan 11 at 19:38
This is not giving any output – pixelngrain Jan 11 at 19:42
you're right because of the "/" at the end of the string, try using the basename() method suggested by Till Helge Helwig that is a smarter solution – wezzy Jan 13 at 15:41
$qa_path=explode('/', '/learnphp/docs/');
echo $qa_path[2]; // output docs
share|improve this answer
but what if there will be more than three directory in path. This array will get always second number directory. Correct? – pixelngrain Jan 11 at 19:38
yes exactly starting from 0 – outman Jan 11 at 19:41
SO say for example if anyone else use this function than they have to go manually and have to modify this. Which is not ideal. I want some solution where it will automatically get last directory – pixelngrain Jan 11 at 19:43
1  
it same what @wezzy said you $qa_path = $qa_path[count($qa_path) - 1]; – outman Jan 11 at 19:49

This will help you

$qa_path=site_root('/learnphp/docs/');
$q_path = explode ("/", $qa_path);
$lastV =  end($q_path);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.