Jump to content

Matching url and more


pneudralics

Recommended Posts

I can't seem to get the match after:

http://www.phpfreaks.com/forums/index.php?

 

I want to be able to check for at least 20 characters to 100 and the allowed characters are in [].

 

The text string will always be: http://www.phpfreaks.com/forums/index.php?

 

preg_match ('|^http://www.phpfreaks.com/forums/index.php?[A-Za-z0-9._=&?]{20,100}$|', $link)

Link to comment
https://forums.phpfreaks.com/topic/204026-matching-url-and-more/
Share on other sites

$url = 'http://www.phpfreaks.com/forums/index.php?param=value';
$query = parse_url($url, PHP_URL_QUERY);

$get = array();
parse_str($query, $get);

echo $get['param'];

 

Not trying to break the url apart. I just want to be able to match:

http://www.phpfreaks.com/forums/index.php? (and 20-100 more characters afterwards)

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.