PHP preg_match實現Regex匹配功能的方法

來源:互聯網
上載者:User
這篇文章主要介紹了PHP preg_match實現Regex匹配功能,較為詳細的介紹了preg_match函數的功能、參數含義、傳回值及使用方法,並結合執行個體給出了preg_match輸出是否匹配及匹配值的相關實現技巧,需要的朋友可以參考下

preg_match — 執行一個Regex匹配

preg_match ( $pattern , $subject , $matches )

搜尋subject與pattern給定的Regex的一個匹配.

參數 :

pattern : 要搜尋的模式,字串類型(Regex)。
subject : 輸入的字串。
matches :(可有可無)如果提供了參數matches,它將被填充為搜尋結果。 $matches[0]將包含完整模式比對到的文本, $matches[1] 將包含第一個捕獲子組匹配到的文本,以此類推。

傳回值 :

preg_match()返回 pattern 的匹配次數。 它的值將是0次(不匹配)或1次,因為preg_match()在第一次匹配後 將會停止搜尋。preg_match_all()不同於此,它會一直搜尋subject 直到到達結尾。 如果發生錯誤preg_match()返回 FALSE。

執行個體1:

$label = 'content/112';$a = preg_match('#content/(\d+)#i', $label, $mc);var_dump($a);var_dump($mc);

輸出:

int(1)array(2) { [0]=> string(11) "content/112" [1]=> string(3) "112"}

執行個體2:

$label = 'content/112';$a = preg_match('#(\w+)/(\d+)#i', $label, $mc);var_dump($a);var_dump($mc);

輸出:

int(1)array(3) { [0]=> string(11) "content/112" [1]=> string(7) "content" [2]=> string(3) "112"}

執行個體3:

$label = 'content/112';$a = preg_match('#content1111111/(\d+)#i', $label, $mc);var_dump($a);var_dump($mc);

輸出:

int(0)array(0) {}

相關推薦:

PHP preg_match的匹配多國語言的技巧

php preg_match_all結合str_replace替換內容中所有img

php preg_matchRegex函數執行個體

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.