当然,之前已经提出了这个问题并且已经找到了解决方案,所有这些解决方案迄今为止都没有用我想通过使用htmlentities或htmlspecialchars将TM符号和&符改为他们的html equivelents:
$TEST = "Kold Locker™ & other stuff"; echo "ORGINIAL: " . $TEST . "<BR/>"; echo "HTML: " . htmlentities($TEST,ENT_COMPAT,'UTF-8');
这显示:
ORGINIAL: Kold Locker™ & other stuff HTML:
我也用htmlspecialchars尝试了它,第二个参数改变了相同的结果.
你的代码适合我: – ?
在manual page for htmlentities()
我们可以读到:
Return Values
Returns the encoded string.
If the input string contains an invalid code unit sequence within the
given encoding an empty string will be returned,unless either the
ENT_IGNORE or ENT_SUBSTITUTE flags are set.