gpt4 book ai didi

像 wordpress the_content() 这样的 php 函数

转载 作者:搜寻专家 更新时间:2023-10-31 21:14:53 25 4
gpt4 key购买 nike

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>"

最佳答案

不,没有。但是您可以深入了解 Wordpress 的源代码,看看有什么 the_content()做到这一点。我自己没有这样做过。在较短的版本中保留 HTML 标签将是一个棘手的代码块。

你需要这个做什么?您是否只是想获得更长的 HTML blob 的预览?在过去,我通过使用 strip_tags() 的组合来完成此操作和 substr() , 并将剥离的内容部分包装在新的 <p> 中标签。

关于像 wordpress the_content() 这样的 php 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11121755/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com