3v4l.org

run code in 300+ PHP versions simultaneously
<?php function diff($credit, $payment) { $credit = (int) $credit; $payment = (int) $payment; // unknown logic, could be a simple diff // like could be a payment process! echo $credit - $payment; } // good developer diff(2, 1); diff(2.5, 1.3); // good developer not strict diff('2', '1'); // good developer doing mistakes diff(2, array()); diff(2, new GenericClassInjected);
Output for git.master, git.master_jit, rfc.property-hooks
1112 Fatal error: Uncaught Error: Class "GenericClassInjected" not found in /in/7ZvlW:21 Stack trace: #0 {main} thrown in /in/7ZvlW on line 21
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:
44.95 ms | 401 KiB | 8 Q