a php 中是否有一个函数(如 Wordpress 的 the_content())可以限制文本字符串而不破坏其中可能包含的 html 标签?
//example:
echo substr ('<p>this <a>is</a> a test</p>', 0, 10);
//output: "<p>this <a"
//desired output: "<p>this </p>"
a php 中是否有一个函数(如 Wordpress 的 the_content())可以限制文本字符串而不破坏其中可能包含的 html 标签?
//example:
echo substr ('<p>this <a>is</a> a test</p>', 0, 10);
//output: "<p>this <a"
//desired output: "<p>this </p>"