Refactor the parsing and processing of configuration options ... just a bit ...
[hiphop-php.git] / hphp / test / slow / ext_wddx / bug37587.php
blob734d8a7817aa6a86e65ae2831aed3795aee45c26
1 <?php
3 var_dump(wddx_deserialize(<<<EOF
4 <wddxPacket version='1.0'>
5 <header/>
6 <data>
7 <array length='1'>
8 <var>
9 <struct>
10 <var name='test'><string>Hello World</string></var>
11 </struct>
12 </var>
13 </array>
14 </data>
15 </wddxPacket>
16 EOF
17 ));
20 ===DONE===