3v4l.org

run code in 300+ PHP versions simultaneously
<?php class MicroTemplateEngine { public $data = array(); private $tpl; function __construct($f) { $this->tpl = $f; } function __set($name, $value) { $this->data[$name] = $value; } function __toString() { $out = $this->tpl; foreach ($this->data as $_key => $_value) { $out = str_replace('#{{' . $_key . '}}', $_value, $out); } $out = preg_replace('/#{{.*?}}/' , '' , $out ); return $out; } } $t = new MicroTemplateEngine('<#{{element}} id="element-#{{id}}">#{{inner}}</#{{element}}>'); $t->data = (object)array('element'=> 'span', 'id'=>45, 'inner' => 'Teste templating engine!'); var_dump($t); echo $t;
Output for 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.40, 7.0.0 - 7.0.33, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.27, 8.2.0 - 8.2.17, 8.3.0 - 8.3.4
object(MicroTemplateEngine)#1 (2) { ["data"]=> object(stdClass)#2 (3) { ["element"]=> string(4) "span" ["id"]=> int(45) ["inner"]=> string(24) "Teste templating engine!" } ["tpl":"MicroTemplateEngine":private]=> string(60) "<#{{element}} id="element-#{{id}}">#{{inner}}</#{{element}}>" } <span id="element-45">Teste templating engine!</span>
Output for 5.0.0 - 5.0.5, 5.1.0 - 5.1.6, 5.2.0 - 5.2.17
object(MicroTemplateEngine)#1 (2) { ["data"]=> object(stdClass)#2 (3) { ["element"]=> string(4) "span" ["id"]=> int(45) ["inner"]=> string(24) "Teste templating engine!" } ["tpl:private"]=> string(60) "<#{{element}} id="element-#{{id}}">#{{inner}}</#{{element}}>" } <span id="element-45">Teste templating engine!</span>
Output for 4.4.2 - 4.4.9
Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/nb52N on line 5
Process exited with code 255.
Output for 4.3.0 - 4.3.1, 4.3.5 - 4.3.11, 4.4.0 - 4.4.1
Parse error: parse error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/nb52N on line 5
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `T_OLD_FUNCTION' or `T_FUNCTION' or `T_VAR' or `'}'' in /in/nb52N on line 5
Process exited with code 255.

preferences:
300.68 ms | 401 KiB | 455 Q