gpt4 book ai didi

php - strip_tags() .... 用空格替换标签而不是删除它们

转载 作者:IT王子 更新时间:2023-10-29 01:03:20 28 4
gpt4 key购买 nike

您知道如何使用 php 将 html 标签替换为空格字符吗?

如果我显示

strip_tags('<h1>Foo</h1>bar');

我得到的结果是“foobar”,但我需要将单词分开的是“foo bar”。

最佳答案

$string      = '<h1>Foo</h1>bar';
$spaceString = str_replace( '<', ' <',$string );
$doubleSpace = strip_tags( $spaceString );
$singleSpace = str_replace( ' ', ' ', $doubleSpace );

关于php - strip_tags() .... 用空格替换标签而不是删除它们,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12824899/

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