php simplexml 在 xml 元素中带有点字符

发布于 2024-11-18 05:30:29 字数 296 浏览 1 评论 0原文

使用下面的 xml 格式,我们如何从 php 中的 XMLReader 访问 News.Env 元素?

$xmlobj->News->News.Env 给出的 Env 不正确。

<?xml version="1.0" encoding="utf-8"?>
<News>
  <News.Env>abc</News.Env>
</News>

With the below xml format how we can access News.Env element from XMLReader in php?

$xmlobj->News->News.Env gives Env which is not correct.

<?xml version="1.0" encoding="utf-8"?>
<News>
  <News.Env>abc</News.Env>
</News>

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

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

发布评论

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

评论(2

蒲公英的约定 2024-11-25 05:30:29

这是因为点 . 是 php 中的字符串连接符。在您的情况下,它尝试将 $xmlobj->News->News (不存在,因此为空)与常量 Env (不存在)连接起来t 也存在,并且被视为字符串。您会收到一个带有适当 error_level 的通知,

$tmp = 'News.Env';
$xmlobj->News->$tmp;

或者简而言之

$xmlobj->News->{'News.Env'};

更新:如果您使用 SimpleXML (并根据您执行的语法)它 $xmlobjNews-(root-)Element“开始”。

$xmlobj->{'News.Env'};

This is because the dot . is the string concatenator in php. In your case it tries to concatenate $xmlobj->News->News (which doesn't exists and is therefore empty) with the constant Env (which doesn't exists too and is treated as a string. you would get a notice about this with an appropriate error_level)

$tmp = 'News.Env';
$xmlobj->News->$tmp;

or in short

$xmlobj->News->{'News.Env'};

Update: If you use SimpleXML (and according the syntax you do it) it $xmlobj "starts" with the News-(root-)Element.

$xmlobj->{'News.Env'};
离不开的别离 2024-11-25 05:30:29

尝试类似的东西

$string = <<<XML
<?xml version="1.0" encoding="utf-8"?>
<News>
    <News.Env>abc</News.Env>
</News>
XML;

$xml = simplexml_load_string($string);

print_r($xml->{'News.Env'});

Try something like

$string = <<<XML
<?xml version="1.0" encoding="utf-8"?>
<News>
    <News.Env>abc</News.Env>
</News>
XML;

$xml = simplexml_load_string($string);

print_r($xml->{'News.Env'});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文