3v4l.org

run code in 300+ PHP versions simultaneously
<?php $xml = <<<EOD <?xml version="1.0" encoding="UTF-8"?> <gesmes:Envelope xmlns:gesmes="http://www.gesmes.org/xml/2002-08-01" xmlns="http://www.ecb.int/vocabulary/2002-08-01/eurofxref"> <gesmes:subject>Reference rates</gesmes:subject> <gesmes:Sender> <gesmes:name>Eesti Pank</gesmes:name> </gesmes:Sender> <Cube> <Cube time="2014-03-04"> <Cube currency="AUD" rate="1.5392" /> <Cube currency="BGN" rate="1.9558" /> <Cube currency="BRL" rate="3.2100" /> <Cube currency="CAD" rate="1.5244" /> <Cube currency="CHF" rate="1.2172" /> <Cube currency="CNY" rate="8.4564" /> <Cube currency="CZK" rate="27.3690" /> <Cube currency="DKK" rate="7.4627" /> <Cube currency="GBP" rate="0.8246" /> <Cube currency="HKD" rate="10.6847" /> <Cube currency="HRK" rate="7.6525" /> <Cube currency="HUF" rate="311.1500" /> <Cube currency="IDR" rate="15957.1100" /> <Cube currency="ILS" rate="4.8055" /> <Cube currency="INR" rate="85.1757" /> <Cube currency="JPY" rate="140.2000" /> <Cube currency="KRW" rate="1474.4700" /> <Cube currency="LTL" rate="3.4528" /> <Cube currency="MXN" rate="18.2977" /> <Cube currency="MYR" rate="4.5049" /> <Cube currency="NOK" rate="8.2485" /> <Cube currency="NZD" rate="1.6411" /> <Cube currency="PHP" rate="61.6390" /> <Cube currency="PLN" rate="4.1865" /> <Cube currency="RON" rate="4.5183" /> <Cube currency="RUB" rate="49.7510" /> <Cube currency="SEK" rate="8.8603" /> <Cube currency="SGD" rate="1.7469" /> <Cube currency="THB" rate="44.6290" /> <Cube currency="TRY" rate="3.0520" /> <Cube currency="USD" rate="1.3768" /> <Cube currency="ZAR" rate="14.9180" /> </Cube> </Cube> </gesmes:Envelope> EOD; $sxe = new SimpleXMLElement($xml); $sxe->registerXPathNamespace('g', 'http://www.gesmes.org/xml/2002-08-01'); $sxe->registerXPathNamespace('pank', 'http://www.ecb.int/vocabulary/2002-08-01/eurofxref'); $result = $sxe->xpath('//pank:Cube[@currency]'); $currencies = array(); foreach ($result as $Cube) { $attributes = $Cube->attributes(); $currencies[ trim( $attributes['currency'] ) ] = trim( $attributes['rate'] ); /*if ( isset( $attributes['currency'], $attributes['rate'] ) ) { $currencies[ trim( $attributes['currency'] ) ] = trim( $attributes['rate'] ); }*/ } var_dump( $currencies );
Output for git.master, git.master_jit, rfc.property-hooks
array(32) { ["AUD"]=> string(6) "1.5392" ["BGN"]=> string(6) "1.9558" ["BRL"]=> string(6) "3.2100" ["CAD"]=> string(6) "1.5244" ["CHF"]=> string(6) "1.2172" ["CNY"]=> string(6) "8.4564" ["CZK"]=> string(7) "27.3690" ["DKK"]=> string(6) "7.4627" ["GBP"]=> string(6) "0.8246" ["HKD"]=> string(7) "10.6847" ["HRK"]=> string(6) "7.6525" ["HUF"]=> string(8) "311.1500" ["IDR"]=> string(10) "15957.1100" ["ILS"]=> string(6) "4.8055" ["INR"]=> string(7) "85.1757" ["JPY"]=> string(8) "140.2000" ["KRW"]=> string(9) "1474.4700" ["LTL"]=> string(6) "3.4528" ["MXN"]=> string(7) "18.2977" ["MYR"]=> string(6) "4.5049" ["NOK"]=> string(6) "8.2485" ["NZD"]=> string(6) "1.6411" ["PHP"]=> string(7) "61.6390" ["PLN"]=> string(6) "4.1865" ["RON"]=> string(6) "4.5183" ["RUB"]=> string(7) "49.7510" ["SEK"]=> string(6) "8.8603" ["SGD"]=> string(6) "1.7469" ["THB"]=> string(7) "44.6290" ["TRY"]=> string(6) "3.0520" ["USD"]=> string(6) "1.3768" ["ZAR"]=> string(7) "14.9180" }

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
57.71 ms | 403 KiB | 8 Q