常用HTML正则
摘要:
.*?/', $str, $matches); var_dump($isMatched, $matches); //HTML js正则 $str = ''; $isMatched = preg_match('//', $str, $matches); var_dump($isMatched, $matches); //HTML img正则 $str = ''; $isMatched = p... 阅读全文
posted @ 2016-05-31 13:47 岩_生 阅读(275) 评论(0) 推荐(0) 编辑