Skip to content

Instantly share code, notes, and snippets.

@ron623
Created March 12, 2019 09:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ron623/7aad1d147d22426f464d341310d9bacd to your computer and use it in GitHub Desktop.
Save ron623/7aad1d147d22426f464d341310d9bacd to your computer and use it in GitHub Desktop.
// テンプレートエンジンの利用(smarty)
require_once 'C:\xampp\htdocs\practice\vendor\autoload.php';$s= new Smarty();
$s->template_dir= './templates/';
$s->compile_dir='.templates_c/';
$s->assign('message','サンプルメッセージ');
$s->display('smarty_basic.tpl');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment