Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一段包含“manish”一词的几个实例。我想删除那些包含单词“manish”的行,而不改变剩余的行。
最便宜和最简单的方法是简单地做:
$text = str_replace('yourword','',$text);
如果你有更多的话,你可以在第一个参数中传递一个数组(http://www.php.net/str_replace)。
str_replace ('manish', '', $string);
$string你的段落在哪里。
$string