PHP 的 SimpleXML 忽略 XML(有点)

发布于 2024-12-01 13:35:47 字数 843 浏览 0 评论 0原文

我有一个非常短(到目前为止)、非常基本的 XML 文件,名为 config.xml,就像

<?xml version='1.0' encoding='UTF-8' ?>
<name_of_program3>
    <path_to_exe3>script.pl</path_to_exe3>
    <path_to_perl>/usr/bin/perl</path_to_perl>
    <temp_output_file>temp.txt</temp_output_file>
</name_of_program3>

我尝试使用以下 PHP 读取它一样:

$config = simplexml_load_file('config.xml');

$exe = $config->name_of_program3->path_to_exe3;
$perl_exec = $config->name_of_program3->path_to_perl;
$temp_file = $config->name_of_program3->temp_output_file;

没有读取任何 XML 元素; $exe$perl_exec$temp_file 都是空的,但用 $ 打印 $config config->asXML() 显示 XML 实际上就在那里。

请告诉我我正在做一些愚蠢的事情,这样我就可以不再用头撞桌子了。 :)

I have a very short (so far), very basic XML file called config.xml like

<?xml version='1.0' encoding='UTF-8' ?>
<name_of_program3>
    <path_to_exe3>script.pl</path_to_exe3>
    <path_to_perl>/usr/bin/perl</path_to_perl>
    <temp_output_file>temp.txt</temp_output_file>
</name_of_program3>

I am trying to read it with the following PHP:

$config = simplexml_load_file('config.xml');

$exe = $config->name_of_program3->path_to_exe3;
$perl_exec = $config->name_of_program3->path_to_perl;
$temp_file = $config->name_of_program3->temp_output_file;

None of the XML elements are read; $exe, $perl_exec, and $temp_file are all empty, but printing $config with $config->asXML() reveals that the XML is, in fact, there.

Please tell me I am doing something silly so that I can stop banging my head against my desk. :)

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

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

发布评论

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

评论(2

十秒萌定你 2024-12-08 13:35:47

不应使用根节点(所有 xml 文档都必须有根节点,因此假定/需要它的存在),请尝试:

$config->path_to_perl

代替。

The root node shouldn't be used (all xml documents must have a root node, so it's presence is assumed/required), try:

$config->path_to_perl

instead.

星軌x 2024-12-08 13:35:47

您应该在没有 name_of_program3 的情况下阅读,因为该程序是 root。
尝试使用

$exe = $config->path_to_exe3

You should read without name_of_program3 because the one is root.
Try to use

$exe = $config->path_to_exe3

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