天気は <?php echo h($weather) ?> です
a は <?php echo h($a); ?> です
<?php echo expand_template('tmpl2.php', ['weather' => $weather]); ?>
b は <?php echo h($b); ?> です
<?php
function h($str){
return htmlspecialchars($str,ENT_QUOTES,'UTF-8');
}
function expand_template($template, $vars){
extract($vars);
ob_start();
ob_implicit_flush(0);
require $template;
return ob_get_clean();
}
echo expand_template('tmpl1.php',['a'=>1, 'b'=>2, 'weather'=>'晴れ']);