PHPize Online / SQLize Online  /  SQLtest Online

A A A
Share      Blog   Popular
Copy Format Clear
Copy Clear
Copy Format Clear
<?php $template = 'This template contains variables {VAR_A} and {VAR_B}'; function showTemplate($template, $vars) { $out = $template; foreach($vars as $key=>$val) { $out = str_replace( sprintf('{%s}', $key), $val, $out ); } echo $out; } showTemplate($template, ['VAR_A' => 123466, 'VAR_B' => 'String variable']);
Show:  
Copy Clear