Php htmlentities将商标转换为&;acirc࿽&;分

Php htmlentities将商标转换为&;acirc࿽&;分,php,xml,html-entities,Php,Xml,Html Entities,可能重复: 我正在使用htmlentities将商标符号转换为htmlentity,但它给了我â;�&分。我做错什么了吗 这是我的密码 <?php echo '<?xml version="1.0" encoding="utf-8"?>'; ?> <rss version="2.0" xmlns:g="http://base.google.com/ns/1.0" xmlns:c="http://www.base.google.com/cns/1.0"&g

可能重复:

我正在使用htmlentities将商标符号转换为htmlentity,但它给了我
â;�&分。我做错什么了吗

这是我的密码

<?php echo '<?xml version="1.0" encoding="utf-8"?>'; ?>
<rss version="2.0" xmlns:g="http://base.google.com/ns/1.0" xmlns:c="http://www.base.google.com/cns/1.0">
<channel>
<title>Spray Foam Systems</title>
<link>http://www.sprayfoamsys.com/store/</link>
<description>Spray Foam Rigs, Spray Foam Equipment, Sprayfoam Parts and Supplies.</description>
<?php
$con = mysql_connect(REMOVED) or die(mysql_error());
    if (!$con)
        {
            die('Could not connect: ' . mysql_error());
        }
    mysql_select_db("sprayfoa_store", $con);
    mysql_query("SET NAMES 'utf8'", $con);

    $query = mysql_query("SELECT * FROM `catalog_product_flat_1` WHERE `visibility` = 4 ORDER BY entity_id asc")
    or die(mysql_error());
?>
<?php
    while($row = mysql_fetch_array($query))
        {
?>
<item>
<g:id><?php echo $row['entity_id']; ?></g:id>
<title><?php echo htmlentities($row['name']); ?></title>
<description><?php echo htmlentities(str_replace(array("\r\n", "\n"), ' ', $row['short_description'])); ?></description>
<g:google_product_category>Business &amp; Industrial &gt; Construction</g:google_product_category>
<g:product_type>Spray Foam Parts &amp; Supplies &gt; Fusion AP Parts</g:product_type>
<link>http://sprayfoamsys.com/store/<?php echo $row['url_path']; ?></link>
<g:image_link>http://sprayfoamsys.com/store/media/catalog/product<?php echo $row['small_image']; ?></g:image_link>
<g:condition>new</g:condition>
<g:availability>in stock</g:availability>
<g:price><?php echo $row['price']; ?></g:price>
<g:brand><?php $entity_id = $row['entity_id']; $query2 = mysql_query("SELECT * FROM `catalog_product_entity_varchar` WHERE entity_id = '$entity_id' AND attribute_id = '127'") or die(mysql_error()); while($row2 = mysql_fetch_array($query2)) { echo $row2['value']; } ?></g:brand>
<g:mpn><?php echo $row['sku']; ?></g:mpn>
</item>
<?php
}
mysql_close($con);
?>
</channel>
</rss>

喷射泡沫系统
http://www.sprayfoamsys.com/store/
采购产品喷雾泡沫钻机,喷雾泡沫设备,喷雾泡沫零件和用品。
根据,当不向此函数提供ISO-8859-1字符串时,需要提供一个字符集:

echo htmlentities($row['name'], ENT_QUOTES, 'UTF-8');
2015年3月更新:请注意,自回答此问题后,此函数使用的默认字符集已针对不同版本进行了更改:

  • PHP<5.4:
    ISO-8859-1
  • PHP 5.4和5.5:
    UTF-8
  • PHP>=5.6:default\u charset
设置(这是非常受欢迎的,它本来应该是这样的)
尝试探索
htmlentities()
的其他参数,它们可能会有所帮助


您需要@Brett的第三个参数,您真的应该使用DOMDocument来构建XML。这可能需要更多的代码,但像现在这样构建XML显然是错误的。另外,了解一下SQL连接,这个循环内的查询是完全不必要的。很神奇!为我工作,一个PHP noob。