Jump to content

[SOLVED] how to grab certain word from url


pixeltrace

Recommended Posts

if so,

 

$url = $_SERVER["REQUEST_URI"];
$url = substr("$url", 1, 4);  // returns "0903"
echo $url;

 

Starts after the domainname.com/ and shows the next 4 charactors...

this is on the basis that the code you need is only 4 charactors long :)

 

Link to comment
Share on other sites

geek way.

<?php

$url="http://www.domainname.com/0903/filename.php?id=1";

if(preg_match_all("/[0-9]{4}/",$url,$matched)){

PRINT_R($matched);
}
?>

 

result

Array
(
    [0] => Array
        (
            [0] => 0903
        )

)

 

encase need the variable for anything.

<?php

$url="http://www.domainname.com/0903/filename.php?id=1";

if(preg_match_all("/[0-9]{4}/",$url,$matched)){

$result=$matched[0][0];
}

echo $result;
?>

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.