3v4l.org

run code in 300+ PHP versions simultaneously
<?php function echo1T() { echo "1"; return true; } function echo2T() { echo "2"; return true; } function echo3T() { echo "3"; return true; } function echo1F() { echo "1"; return false; } function echo2F() { echo "2"; return false; } function echo3F() { echo "3"; return false; } while (echo1T() && echo2F() && echo3T()); echo "\n---\n"; while (echo1F() && echo2T() && echo3T()); echo "\n---\n"; while (echo1T() && echo2T() && echo3F()); echo "\n---\n"; if (echo1T() && echo2F() && echo3T());
Output for git.master, git.master_jit, rfc.property-hooks
12 --- 1 --- 123 --- 12

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:
35.53 ms | 405 KiB | 5 Q