3v4l.org

run code in 300+ PHP versions simultaneously
<?php echo hoge(); function hoge(){ $result = 'error'; try { // このような、try~catch の中で try~catch は変でしょうか? $fuga = (function(){ try { if ( true ) { throw new Exception('error'); } else { return 'ok'; } } catch(Exception $ex) { return $ex->getMessage(); } })(); if ( $fuga === 'ok' ) { $result = 'okです'; } else { throw new Exception('errorです'); } return $result; } catch(Exception $ex) { return $ex->getMessage(); } }
Output for git.master, git.master_jit, rfc.property-hooks
errorです

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:
128.26 ms | 405 KiB | 5 Q