比如说,我加载了一些东西,simplexml_load_file()
但我希望输出是一个数组而不是一个对象。
或者,假设我有一个动态值,有时是一个字符串,有时是一个数组,有时是一个对象(即我不知道输入是什么,但我希望输出始终是一个数组,不有什么关系)。
确保我拥有的任何价值作为数组返回给我的最佳方法是什么?
比如说,我加载了一些东西,simplexml_load_file()
但我希望输出是一个数组而不是一个对象。
或者,假设我有一个动态值,有时是一个字符串,有时是一个数组,有时是一个对象(即我不知道输入是什么,但我希望输出始终是一个数组,不有什么关系)。
确保我拥有的任何价值作为数组返回给我的最佳方法是什么?
或者你可以使用 json_decode 和 foreach 循环
$result = json_decode(XXX);
foreach ($result as $data) {
echo $data->arr1;
echo $data->arr1->arr2;
...
...
}
这是我见过的最好的方法。
/**
* Convert any string, number, object, etc, to an array.
*
* @param (mixed) $input
* The value to be converted into an array.
*
* @return (array)
* The original input as an array. If the input value is an empty string or empty
* array, the return value will be an empty array.
*/
function arrayify($input) {
// Zero means empty, so make sure not to include actual zeros as being "empty"
// since the desired output might be array(0)
if (empty($input) && $input !== 0) {
// Empty in, empty (array) out.
return array();
}
return unserialize(serialize(json_decode(json_encode((array) $input), 1)));
}
我希望他们能把它(或它的衍生物)做成一个核心的 PHP 函数,但因为我认为这不太可能我想我至少会在这里分享它。欢迎任何反馈或改进(假设这不违反规则)。;)