我想在字符串中保留<<
標籤,但是由於strip_tags,它也會從字符串中刪除。在php中剝離<< C++的標籤
$str = "#include<iostream> using namespace std;int main() { int a, b=3; a = b; a-=10; cout<< a; return 0; }";
$newtext = htmlspecialchars((strip_tags(($str),'<iostream>,<')));
echo "<br>" . $newtext;
輸出:
-#include<iostream> using namespace std;int main() { int a, b=3; a = b; a-=10; cout
推薦我的解決方案。
你爲什麼要同時使用'用strip_tags更換( )'*和*'htmlspecialchars()'? – 2012-03-13 14:03:58