如何使用 SimpleXML 检查元素是否存在?

发布于 2024-11-27 00:36:56 字数 651 浏览 0 评论 0原文

我有以下内容(简化的 XML):

<?xml version="1.0" encoding="UTF-8" ?>

<products>
  <product>
    <artnr>xxx1</artnr>
  </product>
</products>

以及以下内容(再次简化的 PHP 代码):

$xml= @simplexml_load_file($filename);

foreach ($xml->product as $product) {
    if (!$this->validate_xml_product($product)) {
        continue;
    }
}

function validate_xml_product($product)
{
    if (!property_exists('artnr', $product)) {
        // why does it always validate to true?
    }
}

由于某种原因,该产品从未验证。

property_exists 不是查找 $product 中是否存在 artnr 元素的正确方法吗?

I have the following (simplified XML):

<?xml version="1.0" encoding="UTF-8" ?>

<products>
  <product>
    <artnr>xxx1</artnr>
  </product>
</products>

And the following (again simplified PHP code):

$xml= @simplexml_load_file($filename);

foreach ($xml->product as $product) {
    if (!$this->validate_xml_product($product)) {
        continue;
    }
}

function validate_xml_product($product)
{
    if (!property_exists('artnr', $product)) {
        // why does it always validate to true?
    }
}

For some reason the product never validates.

Isn't property_exists the correct way of finding out whether there is an artnr element in $product?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

独孤求败 2024-12-04 00:36:56

代码中参数的顺序是相反的。正确的是首先是对象,然后是属性名称:

if (!property_exists($product, 'artnr')) {

显然这仅适用于“真实”属性。如果该属性是使用 __get 方法实现的,那么这也不起作用。

The order of parameter in your code is reversed. Correct is first the object then the property-name:

if (!property_exists($product, 'artnr')) {

And apparently this only works for "real" properties. If the property is implemented using the __get-Method this won't work either.

回梦 2024-12-04 00:36:56

我认为这些论点是交叉的。第一个参数应该是类,第二个参数是属性...

http://php. net/manual/de/function.property-exists.php

I think the arguments are crossed. First param should be the class, second the property...

http://php.net/manual/de/function.property-exists.php

太阳公公是暖光 2024-12-04 00:36:56

使用:

function validate_xml_product($product)
{
    $children=$product->children();
    foreach($children as $child){
         if ($child->getName()=='artnr') {
             return true;
         }
    }
    return false;
}

Use:

function validate_xml_product($product)
{
    $children=$product->children();
    foreach($children as $child){
         if ($child->getName()=='artnr') {
             return true;
         }
    }
    return false;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文