3v4l.org

run code in 300+ PHP versions simultaneously
<?php $clasa = 'HHH'; $length = '100'; $width = 200; $depth = 300; $string1 = '{{clasa}}{{length}}{{width}}'; $string2 = '{{clasa}}{{lenght}}{{depth}}'; $string3 = '{{clasa}}_word{{lenght}},anything{{depth}}'; //$new1 = preg_replace('/{{([a-zA-Z\_\-]*?)}}/', ${'"$1"'}, $string1); $new1 = preg_replace_callback("/{{([a-zA-Z\_\-]*?)}}/", function($m){ global ${$m["1"]}; return ${$m["1"]}; }, $string1); echo $new1;
Output for git.master, git.master_jit, rfc.property-hooks
HHH100200

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