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, new stdClass); diff(new stdClass, 1);
Output for git.master, git.master_jit, rfc.property-hooks
111 Warning: Object of class stdClass could not be converted to int in /in/feLsl on line 5 1 Warning: Object of class stdClass could not be converted to int in /in/feLsl on line 4 0

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