PHP 中未终止的实体引用

2022-08-30 09:14:13

这是我的代码:

<?php
// 27/01/2016 Edit:
$result = mysql_query("A Long mysql query");
$rss = new SimpleXMLElement('<rss version="2.0" />');
$products = $rss->addChild('products');
///
while($row = mysql_fetch_array($result)){
$product = $products->addChild('category');
$product->addChild('product_id',"$row[product_id]");
$product->addChild('cat_id',"$row[cat_id]");
$product->addChild('cat_name',"$row[cat_name]");
$product->addchild('product_code',"$row[product_code]");
$product->addchild('product_name',"$row[product_name]");
$product->addChild('description','$row[description]');
$product->addchild('rating',"$row[rating]");
$product->addchild('image_url','$row[imag_url]');
$product->addchild('price',"$row[price]");
$product->addchild('discount',"$row[discount]");
$product->addchild('stock_status',"$row[stock_status]");
$product->addchild('stock_quantity',"$row[stock_quantity]");
$product->addchild('weight',"$row[weight]");
$product->addchild('length',"$row[length]");
$product->addchild('width',"$row[width]");
$product->addchild('height',"$row[height]");
$product->addchild('colour',"$row[colour]");
$product->addchild('size',"$row[size]");
$product->addchild('material',"$row[material]");
$product->addchild('pattern',"$row[pattern]");
};

Header('Content-type: text/xml');
print($rss->asXML());
?>

这是错误:

警告:SimpleXMLElement::addChild() [simplexmlelement.addchild]:未终止的实体引用_Coke.jpg C:\wamp\www\rabwah\core.php第 40 行

错误与 行相同。'$row[imag_url]'


答案 1

这将正确编码和& < >"" ''

$parent->addChild($name, htmlspecialchars($value));

答案 2

SimpleXMLElement实际上是一个行为类似于对象的系统资源。这使得使用循环变得棘手。因此,当尝试添加新的子元素而不是这个时:

$product->addchild('element', $value);

这样做:

$product->element = $value;

或者您可以使用 来转义 html 字符。htmlspecialchars()

注意:

mysql_* 开始弃用,从 开始被删除。因此,请改用 或 .
为什么我不能在 PHP 中使用 mysql_* 函数?mysqli_*PDO


推荐