3v4l.org

run code in 300+ PHP versions simultaneously
<?php ini_set('precision', 16); $arr = ['test' => 22854.94878205978 ]; print_r($arr['test']); echo "\n---\n"; var_export($arr['test']); echo "\n---\n"; var_dump($arr['test']); echo "---\n"; echo $arr['test']; echo "\n\n===\n\n"; $query = http_build_query($arr); print_r($query); echo "\n---\n"; var_export($query); echo "\n---\n"; var_dump($query); echo "---\n"; echo $query;
Output for git.master, git.master_jit, rfc.property-hooks
22854.94878205978 --- 22854.94878205978 --- float(22854.94878205978) --- 22854.94878205978 === test=22854.94878205978 --- 'test=22854.94878205978' --- string(22) "test=22854.94878205978" --- test=22854.94878205978

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:
132.76 ms | 406 KiB | 5 Q