Looking for a way of getting the path from an URL in PHP:
I want to take: http://example.com/hurrdurr
And make it: hurrdurr
I only want the text after .com/
Can i do this with trim?
|
Use For instance:
|
|||
|
|
|
For this particular case you could also use "basename" for your purposes.
|
|||
|
|
trimis for removing whitespace from the beginning and end of a string. – Daniel Vandersluis Aug 24 '10 at 20:12