3v4l.org

run code in 300+ PHP versions simultaneously
<?php function brut36($A="0123456789", $N=1) { $base="0123456789abcdefghijklmnopqrstuvwxyz"; $b=strlen($A); $count=pow($b, $N); for ($i=0;$i<$count;$i++) echo strtr(str_pad(base_convert($i, 10, $b), $N, "0", STR_PAD_LEFT), $base, $A),"\r\n"; } brut36("01", 3);
Output for git.master, git.master_jit, rfc.property-hooks
000 001 010 011 100 101 110 111

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