2008-12-24

PHP preg_match 多行match的用法

用[\s\S]*來完成多行

<?php

$test = "/**

123中文endsadf#!$%#!46i90-t9-9-0

*/";


preg_match('/\\/\\*\\*[\s\S]*/m',$test,$m);

print_r($m);

?>


結果

Array
(
[0] => /**
123中文endsadf#!$%#!46i90-t9-9-0
*/
)




參考:PHP正则表达式匹配多行 - PHP - ◇王者之剑◇-Albert Song's Blog

沒有留言: