Jump to content

preg_match help


skwap

Recommended Posts

Friends.

 

i have a problem while using preg_match() function. My aim is to match the value of n from this url

index.php?n=100&img=1

 

i used this code

 

$url = "index.php?n=100&img=1";
preg_match('/\index.php?n=(.*?)&img/si',$mid,$url);
print_r($mid);

 

after executing above code the code did not print the matched array values. Its printing just like this Array()

i want to print the matched value of n from my url.

 

 

Anyone can help me to match the value ? & please correct my code.

 

Thanks In Advance

Link to comment
Share on other sites

seems like you have your arguments switched.. the second argument should be the subject that your pattern applies to, and the third argument will be the array of matches...

 

preg_match('/\index.php?n=(.*?)&img/si',$url,$mid); //switch $mid and $url

Link to comment
Share on other sites

If the value of n is always going to be a number, you might as well put that in your pattern. Also, can you ever have a page where the value of n is nothing? If not, that may as well be in your pattern by using a plus instead of a star.

 

preg_match('/\index.php?n=([0-9]+?)&img/si',$url, $mid); //assuming n is always a number

 

P.s. I think you had the $url and the $mid the wrong way round too ;D

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.