这是我的代码
<?php
$string = 'this
this
good
good
hahah';
$rows = explode("\n",$string);
$unwanted = 'this|good';
$cleanArray= preg_grep("/$unwanted/i",$rows,PREG_GREP_INVERT);
$cleanString=implode("\n",$cleanArray);
print_r ( $cleanString );
?>
显示
hahah
我想要像这样
this
good
hahah
我想保留一个...请帮帮我,谢谢你们
胡子哥哥
阿晨1998
四季花海
回首忆惘然