Heim  >  Fragen und Antworten  >  Hauptteil

上面正则表达式中preg_match这个是什么意思?

<?php
	header("Content-type: text/html; charset=utf-8");//设置编码
	$zz = '/\w+@([a-zA-Z0-9-]+.){1,2}(com|cn|org|gov.cn|net|edu.cn)/';
	$string1 = "k53981@qq.com";
	if (preg_match($zz, $string1, $matches)) {
	    echo '匹配到了,结果为:';
	    var_dump($matches);
	} else {
	    echo '没有匹配到';
	}
?>


看透不说透看透不说透2882 Tage vor1266

Antworte allen(2)Ich werde antworten

  • 数据分析师

    数据分析师2017-09-30 22:45:58

    上面正则表达式中preg_match这个是什么意思?-PHP中文网问答-上面正则表达式中preg_match这个是什么意思?-PHP中文网问答

    围观一下哦,学习一下。

    Antwort
    0
  • 迷茫

    迷茫2016-12-17 14:58:31

    执行一个正则表达式匹配

    Antwort
    0
  • StornierenAntwort