blob: 0d1f14e4af7d4cefdcf8f3bdb719fb80aad8a3e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
--TEST--
SimpleXML and attributes
--SKIPIF--
<?php if (!extension_loaded("simplexml")) print "skip"; ?>
--FILE--
<?php
$sxe = simplexml_load_file(dirname(__FILE__).'/sxe.xml');
var_dump($sxe->id);
var_dump($sxe->elem1->attr1);
echo "===Done===\n";
?>
--EXPECT--
string(5) "elem1"
string(5) "first"
===Done===
|