3v4l.org

run code in 300+ PHP versions simultaneously
<?php declare(strict_types=1); class Test { function __toInt() { return 10; } function __toFloat() { return 10.00; } function __toString() { return "10"; } } var_dump((int) new Test, (float) new Test, (string) new Test);
Output for git.master, git.master_jit, rfc.property-hooks
Warning: Object of class Test could not be converted to int in /in/IXYG7 on line 19 Warning: Object of class Test could not be converted to float in /in/IXYG7 on line 19 int(1) float(1) string(2) "10"

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