Version
|
PHP 5.2 Version Before
|
PHP5.3 Version After
|
Function
|
Ereg()、Eregi()
|
Preg_match()
|
舉例
|
ereg(“^[0-9]*$”,$String)
|
preg_match(“/^[0-9]*$/”,$Strimg)
|
說明
|
要加 /
特別提醒:posix與perl的很明顯的表達區別就是是否加 /,所以與ereg相比,後者在正則的前後分別增加了兩個」/」符號,不能缺少。
|
感謝分享,解決我的難題 ^^
回覆刪除不客氣!^^
刪除