3v4l.org

run code in 300+ PHP versions simultaneously
<?php $subject = "we went to see a ewe"; var_dump(str_replace(['e', 'w'], ['w', 'e'], $subject)); var_dump(str_replace([0 => 'e', 1 => 'w'], [0 => 'w', 1 => 'e'], $subject)); var_dump(preg_replace(['/e/', '/w/'], ['w', 'e'], $subject)); var_dump(preg_replace([0 => '/e/', 1 => '/w/'], [0 => 'w', 1 => 'e'], $subject));
Output for git.master, git.master_jit, rfc.property-hooks
string(20) "ee eent to see a eee" string(20) "ee eent to see a eee" string(20) "ee eent to see a eee" string(20) "ee eent to see a eee"

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