ホームページ >バックエンド開発 >PHPチュートリアル >定期的なルールとその解決方法を尋ねる
通常の
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> //匹配一个简单的URL $reg = '/(http:\/\/)?(.*\.)*[(com)|(cn)|(net)]/'; $str = 'www.baidu.com/1/2/3/4/5/6'; preg_match($reg, $str, $match); var_dump($match);