php – html_entity_decode代替 也?如果没有怎么替换呢?

前端之家收集整理的这篇文章主要介绍了php – html_entity_decode代替 也?如果没有怎么替换呢?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一种情况,我把一个字符串传递给一个函数.我想转换& nbsp;到“”(空格),然后再传递给函数. html_entity_decode是吗?

如果不行怎么办?

我知道str_replace,但还有其他出路吗?

报价从 html_entity_decode()手册:

You might wonder why
trim(html_entity_decode(' '));
doesn’t reduce the string to an empty
string,that’s because the ' '
entity is not ASCII code 32 (which is
stripped by trim()) but ASCII code 160
(0xa0) in the default ISO 8859-1
characterset.

您可以使用str_replace()将ascii字符#160替换为空格:

<?PHP
$a = html_entity_decode('>&nbsp;<');
echo 'before ' . $a . PHP_EOL;
$a = str_replace("\xA0",' ',$a);
echo ' after ' . $a . PHP_EOL;
原文链接:/php/131095.html

猜你在找的PHP相关文章