Looking for a way of getting the path from an URL in PHP:
I want to take: http://example.com/hurrdurr
http://example.com/hurrdurr
And make it: hurrdurr
hurrdurr
For this particular case you could also use "basename" for your purposes.
$var='http://twitter.com/pwsdedtch'; echo basename($var); // pwsdedtech