3v4l.org

run code in 300+ PHP versions simultaneously
<?php $convertQ = function ($str) { if ('No' === $str || '0' == $str) { return 'no'; } if ('Yes' === $str || '1' == $str) { return 'yes'; } if ('Unsure' === $str) { return 'maybe'; } 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 'yes' var_dump($convertQ('Yes')); // expect 'yes', get 'yes' var_dump($convertQ('Unsure')); // expect 'maybe', get 'maybe' var_dump($convertQ('a')); // expect thrown error, get error thrown
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/p6901:16 Stack trace: #0 /in/p6901(24): {closure}('a') #1 {main} thrown in /in/p6901 on line 16
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:
58.92 ms | 401 KiB | 8 Q