Maison > php教程 > php手册 > [PHP]xml 转成数组

[PHP]xml 转成数组

WBOY
Libérer: 2016-06-06 20:12:44
original
1073 Les gens l'ont consulté

PHP 的xml 操作类有多种,xml to array 的方法当然也是有多种的,一般常见的就是递归遍历。今天看了一下php 的手册,然后发现评论中有很多新颖的用法,尽管有些不是很完善。这里列举几个。 //2 line XML2Array$xml?=?simplexml_load_string($xmlstring);$arr

PHP 的xml 操作类有多种,xml to array 的方法当然也是有多种的,一般常见的就是递归遍历。今天看了一下php 的手册,然后发现评论中有很多新颖的用法,尽管有些不是很完善。这里列举几个。

//2 line XML2Array
$xml?=?simplexml_load_string($xmlstring);
$array?=?json_decode(json_encode($xml),TRUE);
//完善过的
function?toArray($xml) {
? ? ? ??$array?=?json_decode(json_encode($xml),?TRUE);
? ? ? ??
? ? ? ? foreach (?array_slice($array,?0) as?$key?=>?$value?) {
? ? ? ? ? ? if ( empty($value) )?$array[$key] =?NULL;
? ? ? ? ? ? elseif (?is_array($value) )?$array[$key] =?toArray($value);
? ? ? ? }
? ? ? ? return?$array;
? ? }
Copier après la connexion
//2 line XML2Array 利用强制类型转换
$xml = simplexml_load_string($file);
$array = (array)$xml;
Copier après la connexion
Étiquettes associées:
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Recommandations populaires
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal