Home  >  Article  >  Backend Development  >  Regular expression testing tool php URL verification regular expression

Regular expression testing tool php URL verification regular expression

WBOY
WBOYOriginal
2016-07-29 08:46:131147browse

Copy the code The code is as follows:


$url = 'http://www.baidu.com/zongzi/oo.html';
$n = preg_match_all("/http:[ /]{2}[a-z]+[.]{1}[a-zd-]+[.]{1}[a-zd]*[/]*[A-Za-zd]*[/]* [A-Za-zd]*[.]*html/",$url,$array);
var_dump($array);
?>

The above introduces the regular expression testing tool PHP URL verification regular expression, including the content of the regular expression testing tool. I hope it will be helpful to friends who are interested in PHP tutorials.

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn