我有带有节点的 XML 包含破折号:
<max-passwd-length>32</max-passwd-length>
<max-email-length>128</max-email-length>
我使用了这些行:
$s = simplexml_load_file('rss-0.91.xml');
print $s->max-email-length->title
但是我收到 PHP 错误,因为有破折号,我该怎么做才能解决这个问题?
PS 我无法编辑 XML 文件以删除破折号。