Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a page at:

http://somewebsite.com/1234/test/

How do I get the 1234 extracted from it with a PHP regex?

share|improve this question
You want the "1234" part? – blake305 Apr 13 '12 at 16:30
@blake305 yes I do. – chromedude Apr 13 '12 at 16:32
1  
if the url is somewebsite.com/1234/test/directory do you want the "test" part or the "1234" part? – blake305 Apr 13 '12 at 16:32

6 Answers

up vote 2 down vote accepted

I like to avoid regex if I don't need it, so I would recommend you do it this way:

$url = explode("/", $_SERVER['PHP_SELF']);

Then you can reference the part of the url that you want using this:

$url[1]

If you need/want to use regex, I'll think about it for a second and try to post a solution later.

share|improve this answer

Don't use RegEx use parse_url() and explode().


For one level up, use dirname()

share|improve this answer

To just get the one above you can use

echo dirname("http://www.google.com/cake/lol");

Outputs

http://www.google.com/cake

Or for just the bit between the / and / you could do

var_dump(explode("/", "http://www.google.com/cake/lol"));

Or in regex

preg_match_all('@/([^/]*)/@',$sourcestring,$matches);
share|improve this answer

Perform regex on $_SCRIPT['REQUEST_URL'] or split it by '/' and get the first element => 1234

share|improve this answer

If the PHP was triggered by launching that URL, then these will probably be true:

$_SERVER['REQUEST_URI'] == "/1234/test/"

dirname($_SERVER['REQUEST_URI']) == "/1234"

basename(dirname($_SERVER['REQUEST_URI'])) == "1234"
share|improve this answer
preg_match(".*\/(\w+)\/(\w+)\/", "$url", $matches);

The parent directory is $matches[1].

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.