gpt4 book ai didi

php - 在保留数组的同时使用 PHP 将 XML 转换为 JSON

转载 作者:数据小太阳 更新时间:2023-10-29 02:37:21 24 4
gpt4 key购买 nike

我需要将 XML 文档转换为 JSON,以便在 JavaScript 中轻松访问数据。我目前正在使用这种方法将 XML 转换为 JSON:

json_encode(new SimpleXMLElement($xml, LIBXML_NOCDATA));

但是,当一个元素只包含 1 个子元素时,我遇到了问题。当用 SimpleXML 解析时,它被视为对象而不是数组。我希望它们始终被视为数组,除非元素仅包含文本。

例子:

$xml = <<<END
<xml>
<TESTS>
<TEST>TEXT HERE</TEST>
</TESTS>
</xml>
END;

echo json_encode(new SimpleXMLElement($xml, LIBXML_NOCDATA));

这个输出:

{"TESTS":{"TEST":"TEXT HERE"}}

如果我在 下添加另一个元素,那么输出就是我想要的:

$xml = <<<END
<xml>
<TESTS>
<TEST>TEXT HERE</TEST>
<TEST>MORE TEXT HERE</TEST>
</TESTS>
</xml>
END;

echo json_encode(new SimpleXMLElement($xml, LIBXML_NOCDATA));

输出:

{"TESTS":{"TEST":["TEXT HERE","TEXT HERE"]}}

请注意元素是如何包含在 JSON 数组而不是 JSON 对象中的。有没有办法强制将元素解析为数组?

最佳答案

我不得不处理同样的情况。这是问题的第一个快速解决方案 - 适用于您的示例。

class JsonWithArrays
{
protected $root, $callback;

public function __construct( SimpleXMLElement $root )
{
$this->root = $root;
}

/**
* Set a callback to return if a node should be represented as an array
* under any circumstances.
*
* The callback receives two parameters to react to: the SimpleXMLNode in
* question, and the nesting level of that node.
*/
public function use_callback_forcing_array ( $callback )
{
$this->callback = $callback;
return $this;
}

public function to_json ()
{
$transformed = $this->transform_subnodes( $this->root, new stdClass(), 0 );
return json_encode( $transformed );
}

protected function transform_subnodes ( SimpleXMLElement $parent, stdClass $transformed_parent, $nesting_level )
{
$nesting_level++;

foreach( $parent->children() as $node )
{
$name = $node->getName();
$value = (string) $node;

if ( count( $node->children() ) > 0 )
{
$transformed_parent->$name = new stdClass();
$this->transform_subnodes( $node, $transformed_parent->$name, $nesting_level );
}
elseif ( count( $parent->$name ) > 1 or $this->force_array( $node, $nesting_level ) )
{
$transformed_parent->{$name}[] = $value;
}
else
{
$transformed_parent->$name = $value;
}
}

return $transformed_parent;
}

protected function force_array ( $node, $nesting_level )
{
if ( is_callable( $this->callback ) )
{
return call_user_func( $this->callback, $node, $nesting_level );
}
else
{
return false;
}
}
}

$xml = <<<END
<xml>
<TESTS>
<TEST>TEXT HERE</TEST>
</TESTS>
</xml>
END;

$xml2 = <<<END
<xml>
<TESTS>
<TEST>TEXT HERE</TEST>
<TEST>MORE TEXT HERE</TEST>
</TESTS>
</xml>
END;

// Callback using the node name. Could just as well be done using the nesting
// level.
function cb_testnode_as_array( SimpleXMLElement $node, $nesting_level )
{
return $node->getName() == 'TEST';
}

$transform = new JsonWithArrays( new SimpleXMLElement($xml, LIBXML_NOCDATA) );
echo $transform
->use_callback_forcing_array( 'cb_testnode_as_array' )
->to_json();

echo PHP_EOL;

$transform2 = new JsonWithArrays( new SimpleXMLElement($xml2, LIBXML_NOCDATA) );
echo $transform2
->use_callback_forcing_array( 'cb_testnode_as_array' )
->to_json();

关于php - 在保留数组的同时使用 PHP 将 XML 转换为 JSON,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7181269/

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