ホームページ  >  記事  >  php教程  >  PHPでのpreg正規関数の使用

PHPでのpreg正規関数の使用

WBOY
WBOYオリジナル
2016-06-21 08:47:321446ブラウズ
1.preg_match と preg_match_all の違い
preg_match と preg_match_all の違いは、preg_match が 1 回だけ一致することです。 preg_match_all は文字列の末尾までのすべてに一致します。例:
<?php
//注:正则 /a.+?e/ 是非贪婪模式(因为量词‘+’后面加上了‘?’),如果使用 /a.+?e/U 则变回了贪婪模式
preg_match("/a.+?e/","abcdefgabcdefgabcdefg",$out1);
preg_match_all("/a.+?e/","abcdefgabcdefgabcdefg",$out2);
var_dump($out1);
var_dump($out2);
/*
输出:
array (size=1)
  0 => string &#39;abcde&#39; (length=5)

array (size=1)
  0 =>
    array (size=3)
      0 => string &#39;abcde&#39; (length=5)
      1 => string &#39;abcde&#39; (length=5)
      2 => string &#39;abcde&#39; (length=5)
 */
?>
2. 貪欲モードと非貪欲モードの違い
例: String str="abcaxc";
パターン p="ab*c";
貪欲なマッチング: 正規表現は一般に最大長まで一致する傾向があり、これがいわゆる貪欲なマッチングです。たとえば、パターン p を使用して文字列 str と一致させると、結果は abcaxc(ab*c) になります。
非貪欲マッチング: 一致する文字数を減らして、結果だけをマッチングします。たとえば、パターン p を使用して文字列 str と一致させると、結果は abc(ab*c) となります。
例:
<?php
$str = "http://www.baidu/.com?url=www.sina.com/";
preg_match("/http:(.*)com/", $str, $matches1); //贪婪匹配
var_dump($matches1);

preg_match("/http:(.*?)com/", $str, $matches2); //非贪婪匹配(量词&#39;*&#39;后面跟上了&#39;?&#39;)
var_dump($matches2);

/*
array (size=2)
  0 => string &#39;http://www.baidu/.com?url=www.sina.com&#39; (length=38)
  1 => string &#39;//www.baidu/.com?url=www.sina.&#39; (length=30)

array (size=2)
  0 => string &#39;http://www.baidu/.com&#39; (length=21)
  1 => string &#39;//www.baidu/.&#39; (length=13)
 */
?>
3. preg_match_all パラメータ PREG_PATTERN_ORDER (デフォルト) と PREG_SET_ORDER の違い
<?php
echo(&#39;PREG_PATTERN_ORDER&#39;);
preg_match_all("<[^>]+>(.*)</[^>]+>U",
    "<b>start: </b><b>this is a test</b><b>end</b>",
    $out1);
var_dump($out1);

echo(&#39;PREG_SET_ORDER&#39;);
preg_match_all("<[^>]+>(.*)</[^>]+>U",
    "<b>start: </b><b>this is a test</b><b>end</b>",
    $out2, PREG_SET_ORDER);
var_dump($out2);

/*
PREG_PATTERN_ORDER
array (size=2)
  0 =>
    array (size=3)
      0 => string &#39;<b>start: </b>&#39; (length=14)
      1 => string &#39;<b>this is a test</b>&#39; (length=21)
      2 => string &#39;<b>end</b>&#39; (length=10)
  1 =>
    array (size=3)
      0 => string &#39;start: &#39; (length=7)
      1 => string &#39;this is a test&#39; (length=14)
      2 => string &#39;end&#39; (length=3)

PREG_SET_ORDER
array (size=3)
  0 =>
    array (size=2)
      0 => string &#39;<b>start: </b>&#39; (length=14)
      1 => string &#39;start: &#39; (length=7)
  1 =>
    array (size=2)
      0 => string &#39;<b>this is a test</b>&#39; (length=21)
      1 => string &#39;this is a test&#39; (length=14)
  2 =>
    array (size=2)
      0 => string &#39;<b>end</b>&#39; (length=10)
      1 => string &#39;end&#39; (length=3)
 */
?>

詳細: preg_match_all の使用例



声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。