我正在尝试使用php和DOM文档为Google Merchant创建Feed。
Feed包含数千个项目,但无法验证,因为有少数情况(6000+中的4/5)XML格式不正确,例如:
<g:product_type>Plantsg:product_type>
我在foreach循环中生成
//Loop through each plant
foreach($plantList as $plantItem){
//begin item element
$item = $xml->createElement('item');
//Loop through use key as element name and value as data
foreach ($plantItem as $key => $value)
{
//Decode HTML characters, for example '&' becomes &
//to comply with http://www.w3.org/TR/xhtml1/#C_12
$decode = htmlspecialchars_decode($value);
$decode = trim($decode);
if(empty($decode))
continue;
//Create the element
$tag = $xml->createElement($key);
$tag = $item->appendChild($tag);
//Write the field
$text = $xml->createTextNode($decode);
$text = $tag->appendChild($text);
}
$item = $channel->appendChild($item);
}
Here is the xml entire generation code.
以下是3个格式不正确的标签:
g:adwords_grouping>18</g:adwords_grouping>
form>10 ltr pot</form>
title>Buy Helleborus x nigercors</title>
当我对代码进行调整时,格式错误的标签会弹出不同的位置。通常它要么缺少'
答案 0 :(得分:1)
感谢所有试图解决它的人。当遇到编码问题时,Chrome会将格式错误的标记放在那里。
请参阅。在这种情况下,它打开了,标签遇到'ö',然后摔倒并没有关闭标签。
当我应该使用hakre指出的htmlspecialchars时,我也错误地使用了htmlspecialchars_decode,但那是一个完全不同的问题。
答案 1 :(得分:0)
我在@aefxx,如果你能在行看到格式错误的开头标记之前和之后提供几行,那将会很有帮助(看起来你所展示的所有例子都只缺少开头标记中的一个字符)。 / p>