...
|
...
|
@@ -434,7 +434,7 @@ class Body { |
|
|
* @time 2022/8/12 10:34
|
|
|
*/
|
|
|
private function body_remove_tag($body,$tag){
|
|
|
preg_match("/{$tag}[\w\W].*/i",$body,$result);
|
|
|
preg_match("/{$tag}\r?[\w\W].*/i",$body,$result);
|
|
|
if(!empty($result[0])) {
|
|
|
$body = str_replace($result, '', $body);
|
|
|
}
|
...
|
...
|
|