3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Simplify { public static function Template($file, $variables) { $template = $file; preg_match_all("{{(\w*)}}", $template, $matches); foreach($matches[1] as $var) { if (array_key_exists($var, $variables)) { $template = str_replace('{{' . $var . '}}', $variables[$var], $template); } } echo $template; } } $template = "hfwlei ifaugweifg uwfgyakreu fvgw fwaeuif gonwiegf {{naam}} uywanfi awyuegfawuyegf {{email}}"; $vars = array("naam" => "Joran", "email" => "info@jorandesign.nl"); Simplify::Template($template, $vars);
Output for git.master, git.master_jit, rfc.property-hooks
hfwlei ifaugweifg uwfgyakreu fvgw fwaeuif gonwiegf Joran uywanfi awyuegfawuyegf info@jorandesign.nl

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