Loading...
去掉html中的空行$text = "Line 1 Line 3"; $text = preg_replace("/(^[\r\n]*|[\r\n]+)[\s\t]*[\r\n]+/", "\n", $text); echo $text;
正则前面的 (?i) (?s) (?m) (?is) (?im) 是什么意思?称为内联匹配模式,通常用内联匹配模式代替使用枚举值RegexOptions指...