3v4l.org

run code in 300+ PHP versions simultaneously
<?php $convertQ = function ($str) { switch ($str) { case 0: case 'No': return 'no'; case 1: case 'Yes': return 'yes'; case 'Unsure': return 'maybe'; default: throw new \InvalidArgumentException('Unaccounted for value for questionnaire field: ' . $str); } }; var_dump($convertQ(0)); // expect 'no', get 'no' var_dump($convertQ('No')); // expect 'no', get 'no' var_dump($convertQ(1)); // expect 'yes', get 'no' var_dump($convertQ('Yes')); // expect 'yes', get 'no' var_dump($convertQ('Unsure')); // expect 'maybe', get 'no' var_dump($convertQ('a')); // expect thrown error, get 'no'
Output for git.master, git.master_jit, rfc.property-hooks
string(2) "no" string(2) "no" string(3) "yes" string(3) "yes" string(5) "maybe" Fatal error: Uncaught InvalidArgumentException: Unaccounted for value for questionnaire field: a in /in/hSXPS:17 Stack trace: #0 /in/hSXPS(26): {closure}('a') #1 {main} thrown in /in/hSXPS on line 17
Process exited with code 255.

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:
59.23 ms | 401 KiB | 8 Q