我试图从wordpress返回的字符串中删除一些'<p>'
标记。我已经看过php文档,但我似乎无法找到一个函数,它会让我定义一个字符串,然后从变量中删除该字符串。我是php新手,我意识到这一定是一个非常简单的操作。有什么建议吗?
答案 0 :(得分:2)
您可以使用str_replace http://www.php.net/manual/en/function.str-replace.php
答案 1 :(得分:1)
strip_tags($mystring); // this will remove all tags
答案 2 :(得分:1)
试试这个:
$myString = "<p>whatever you want in your string</p>";
$newString = str_replace("<p>", "", $newString);
$newString = str_replace("</p>", "", $newString);
echo $newString;
答案 3 :(得分:0)
strip_tags()
可能会对您有所帮助。
答案 4 :(得分:0)
我认为您正在寻找str_replace()
或(更有可能,因为您只想替换部分)preg_match()
。