3v4l.org

run code in 300+ PHP versions simultaneously
<?php function encode($str) { return preg_replace_callback('/(.)\1*/', function($match) { return strlen($match[1]) . $match[2]; }, $str); } function decode($str) { return preg_replace_callback('/(\d+)(\D)/', function($match) { return str_repeat($match[2], $match[1]); }, $str); } echo encode('WWWWWWWWWWWWBWWWWWWWWWWWWBBBWWWWWWWWWWWWWWWWWWWWWWWWBWWWWWWWWWWWWWW'), "\n"; echo decode('12W1B12W3B24W1B14W'), "\n";
Output for git.master, git.master_jit, rfc.property-hooks
Warning: Undefined array key 2 in /in/7nMse on line 3 Warning: Undefined array key 2 in /in/7nMse on line 3 Warning: Undefined array key 2 in /in/7nMse on line 3 Warning: Undefined array key 2 in /in/7nMse on line 3 Warning: Undefined array key 2 in /in/7nMse on line 3 Warning: Undefined array key 2 in /in/7nMse on line 3 Warning: Undefined array key 2 in /in/7nMse on line 3 1111111 WWWWWWWWWWWWBWWWWWWWWWWWWBBBWWWWWWWWWWWWWWWWWWWWWWWWBWWWWWWWWWWWWWW

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.44 ms | 402 KiB | 8 Q