Jump to content

Help with something..


aceman

Recommended Posts

mod_rewrite would have to be used to determine this cause you would need a page to grab that data.

 

Assuming you get modrewrite to send the data to a processing page. On the processing page you can explode "/" from the $_SERVER['REQUEST_URI'] in the script that would process the data. Then use the array data to figure out what you need.

Link to comment
https://forums.phpfreaks.com/topic/142533-help-with-something/#findComment-746927
Share on other sites

$var1 = "omg/123";
echo strstr($var1, "/");

 

This will (should) return the rest of $var1 after it finds the "/".

That will return the text after the first instance of a string. The OP wants the text after the last occurance (or 2nd to last) of a string:

 

function lastPath($fullPath)
{
    $fullPath = (substr($fullPath, -1) == '/')?substr($fullPath, 0, -1):$fullPath;
    return substr(strrchr($fullPath, '/'), 1);
}

$text = "http://omgGoogle.com/member/4333/";

echo lastPath($text); // 4333

Link to comment
https://forums.phpfreaks.com/topic/142533-help-with-something/#findComment-746989
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.