gpt4 book ai didi

php - 如何将 DOMNodeList 对象转换为数组

转载 作者:IT王子 更新时间:2023-10-29 00:14:12 24 4
gpt4 key购买 nike

我有这个代码:

     $dom = new DOMDocument();
$dom->load('file.xml');
$names = $dom->getElementsByTagName('name');

现在,$names是DOMNodeList对象,我需要把这个对象转换成数组,

     $names = (array)$names;
var_dump($names); // empty array

上面的代码不起作用,返回一个空数组,为什么?

最佳答案

使用 iterator_to_array() 将 DomNodeList 转换为数组

$document = new DomDocument();
$document->load('test.xrds');
$nodeList = $document->getElementsByTagName('Type');
$array = iterator_to_array($nodeList);

关于php - 如何将 DOMNodeList 对象转换为数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15807314/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com