骨のダイスを転がそう

2009|01|02|03|04|05|06|07|10|12|
2010|01|02|03|04|05|06|07|08|09|10|11|
2011|02|03|05|06|07|08|09|10|11|12|
2012|01|02|04|05|09|10|11|12|
2013|01|02|04|
2014|11|
2015|01|04|05|
2016|06|07|08|09|11|
2017|01|02|03|04|
2018|03|

2010-06-28

_ [php] 簡易テンプレート

こういうコードと

<?php

function t(){
    $apple  = "りんご";
    $banana = "バナナ";
    $cherry = "さくらんぼ";
    $dorian = "ドリアン";

    ob_start();
    include("template.php");
    $body = ob_get_contents();
    ob_end_clean();
    return $body;
}
echo t();
?>

こういうテンプレートで、

<html>
<body>
<ul>
<li><?= $apple ?></li>
<li><?= $banana ?></li>
<li><?= $cherry ?></li>
<li><?= $dorian ?></li>
</ul>
</body>
</html>

テンプレートエンジンっぽいことができる。