第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會有你想問的

php 怎么將數(shù)組轉(zhuǎn)xml的函數(shù)?

php 怎么將數(shù)組轉(zhuǎn)xml的函數(shù)?

PHP C
眼眸繁星 2019-05-22 15:15:59
php 怎么將數(shù)組轉(zhuǎn)xml的函數(shù)
查看完整描述

4 回答

?
MYYA

TA貢獻(xiàn)1868條經(jīng)驗(yàn) 獲得超4個(gè)贊

沒有現(xiàn)成函數(shù),只能自己寫;我有一個(gè)別人寫的函數(shù):
<?php
class A2Xml {
private $version = '1.0';
private $encoding = 'UTF-8';
private $root = 'root';
private $xml = null;
function __construct() {
$this->xml = new XmlWriter();
}
function toXml($data, $eIsArray=FALSE) {
if(!$eIsArray) {
$this->xml->openMemory();
$this->xml->startDocument($this->version, $this->encoding);
$this->xml->startElement($this->root);
}
foreach($data as $key => $value){

if(is_array($value)){
$this->xml->startElement($key);
$this->toXml($value, TRUE);
$this->xml->endElement();
continue;
}
$this->xml->writeElement($key, $value);
}
if(!$eIsArray) {
$this->xml->endElement();
return $this->xml->outputMemory(true);
}
}
}
$res = array(
'hello' => '11212',
'world' => '232323',
'array' => array(
'test' => 'test',
'b' => array('c'=>'c', 'd'=>'d')
),
'a' => 'haha'
);
$xml = new A2Xml();
echo $xml->toXml($res);



查看完整回答
反對 回復(fù) 2019-05-26
?
弒天下

TA貢獻(xiàn)1818條經(jīng)驗(yàn) 獲得超8個(gè)贊

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

<?php

class A2Xml {

  private $version  = '1.0';

  private $encoding  = 'UTF-8';

  private $root    = 'root';

  private $xml    = null;

  function __construct() {

    $this->xml = new XmlWriter();

  }

  function toXml($data, $eIsArray=FALSE) {

    if(!$eIsArray) {

      $this->xml->openMemory();

      $this->xml->startDocument($this->version, $this->encoding);

      $this->xml->startElement($this->root);

    }

    foreach($data as $key => $value){

   

      if(is_array($value)){

        $this->xml->startElement($key);

        $this->toXml($value, TRUE);

        $this->xml->endElement();

        continue;

      }

      $this->xml->writeElement($key, $value);

    }

    if(!$eIsArray) {

      $this->xml->endElement();

      return $this->xml->outputMemory(true);

    }

  }

}

$res = array(

  'hello' => '11212',

  'world' => '232323',

  'array' => array(

    'test' => 'test',

    'b'  => array('c'=>'c', 'd'=>'d')

  ),

  'a' => 'haha'

);

$xml = new A2Xml();

echo $xml->toXml($res);


查看完整回答
反對 回復(fù) 2019-05-26
?
白衣染霜花

TA貢獻(xiàn)1796條經(jīng)驗(yàn) 獲得超10個(gè)贊

xml轉(zhuǎn)array方法沒錯,只是xml中有三個(gè)<list>,而數(shù)組中卻不能出現(xiàn)三個(gè)$arr['list'],所以這個(gè)方法自動把三個(gè)<list>中的內(nèi)容放進(jìn)了一個(gè)二維數(shù)組中。
可以嘗試直接取$arr['list'],取出結(jié)果應(yīng)該就是 Array ( [0] => 1 [1] => 2 [2] => 3 ) 了。

查看完整回答
反對 回復(fù) 2019-05-26
?
Helenr

TA貢獻(xiàn)1780條經(jīng)驗(yàn) 獲得超4個(gè)贊

public function arrayToXml($arr){
$xml = "<xml>";
foreach ($arr as $key=>$val){
if(is_array($val)){
$xml.="<".$key.">".arrayToXml($val)."</".$key.">";
}else{
if (is_numeric($val)){
$xml.="<".$key.">".$val."</".$key.">";
}else{
$xml.="<".$key."><![CDATA[".$val."]]></".$key.">";
}
}
}
$xml.="</xml>";
return $xml;
}

查看完整回答
反對 回復(fù) 2019-05-26
  • 4 回答
  • 0 關(guān)注
  • 1260 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號