- 相關(guān)推薦
關(guān)于php正則之函數(shù) preg-replace()參數(shù)說(shuō)明
preg_replace
字符串比對(duì)解析并取代。
語(yǔ)法:mixedpreg_replace(mixedpattern,mixedreplacement,mixedsubject);
返回值:混合類(lèi)型資料
函數(shù)種類(lèi):資料處理
內(nèi)容說(shuō)明
本函數(shù)以pattern的規(guī)則來(lái)解析比對(duì)字符串subject,欲取而代之的字符串為參數(shù)replacement。返回值為混合類(lèi)型資料,為取代后的字符串結(jié)果。
使用范例
下例返回值為$startDate=6/19/1969
復(fù)制代碼 代碼如下:
<?php
$patterns=array("/(19|20d{2})-(d{1,2})-(d{1,2})/","/^s*{(w+)}s*=/");
$replace=array("3/4/1","$1=");
printpreg_replace($patterns,$replace,"{startDate}=1969-6-19");
?>
【php正則之函數(shù) preg-replace()參數(shù)說(shuō)明】相關(guān)文章:
PHP的壓縮函數(shù)06-21
php數(shù)組函數(shù)序列之a(chǎn)rray-combine() - 數(shù)組合并函數(shù)的代碼08-25
淺析php函數(shù)的實(shí)例06-08
簡(jiǎn)單介紹php構(gòu)造函數(shù)用法08-31