位置:首頁(yè) > 軟件操作教程 > 編程開(kāi)發(fā) > PHP > 問(wèn)題詳情

PHP preg_match()和preg_match_all()函數(shù)

提問(wèn)人:劉團(tuán)圓發(fā)布時(shí)間:2021-01-13

    函數(shù)語(yǔ)法:

    int preg_match/preg_match_all(string pattern, string subject[,array matches])

    函數(shù)功能:在字符串subject中匹配表達(dá)式pattern。函數(shù)返回匹配的次數(shù)。如果有數(shù)組matches,那么每次匹配的結(jié)果都將被存儲(chǔ)到數(shù)組matches中。

    函數(shù)preg_matCh()的返回值是0或1。因?yàn)樵摵瘮?shù)在匹配成功后就停止繼續(xù)查找了。而preg_match_all()函數(shù)則會(huì)一直匹配到最后才會(huì)停止。參數(shù)array matches對(duì)于preg_match_all()函數(shù)是必須有的,而對(duì)前者則可以省略。

繼續(xù)查找其他問(wèn)題的答案?

相關(guān)視頻回答
回復(fù)(0)
返回頂部