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
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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.