标签:
<<<操作符需PHP5.3以上版本才能支持
<?php
$string = <<<XML
<?xml version=‘1.0‘ encoding=‘GBK‘?> 此行要顶格写
<root>
<title>Forty What?</title>
<from>Joe</from>
<to>Jane</to>
<body> I know that‘s the answer -- but what‘s the question? </body>
</root>
XML;
var_dump($string);
echo "</br>";
echo $string."</br>";
$xml = simplexml_load_string($string);
var_dump($xml);
?>
结果输出
string
‘<?xml version=‘1.0‘ encoding=‘GBK‘?>
<root>
<title>Forty What?</title>
<from>Joe</from>
<to>Jane</to>
<body> I know that‘s the answer -- but what‘s the question? </body>
</root> ‘ (length=243)
Joe Jane I know that‘s the answer -- but what‘s the question?
object(SimpleXMLElement)[1]
public ‘title‘ =>
string
‘Forty What?‘ (length=11)
public ‘from‘ =>
string
‘Joe‘ (length=3)
public ‘to‘ =>
string
‘Jane‘ (length=4)
public ‘body‘ =>
string
‘ I know that‘s the answer -- but what‘s the question? ‘ (length=58)
标签:
原文地址:http://www.cnblogs.com/xihong2014/p/5629207.html