I have a page at:
http://somewebsite.com/1234/test/
How do I get the 1234 extracted from it with a PHP regex?
|
|
I like to avoid regex if I don't need it, so I would recommend you do it this way:
Then you can reference the part of the url that you want using this:
If you need/want to use regex, I'll think about it for a second and try to post a solution later. |
|||
|
|
|
|
|||
|
|
|
To just get the one above you can use
Outputs Or for just the bit between the / and / you could do
Or in regex
|
|||
|
|
|
Perform regex on |
|||
|
|
|
If the PHP was triggered by launching that URL, then these will probably be true:
|
|||
|
|
The parent directory is |
|||
|
|