Baccho Log

No Image

Sponsored Link

PHP XAMPPでSmartyを導入する方法

  • 投稿日:
  • 更新日:
Tags:
PHP Smarty
Categories:
プログラミング

XAMPPにSmartyを導入させる

簡単な方法でいきます※それしか知らない

  1. 公式HPから最新のSmartyをダウンロードしましょう
    Smarty 公式サイト
  2. zipを解凍して、適当なところにおきましょう
  3. C:\xampp\htdocsにSmartyを入れるフォルダを作ります(仮にSmarty_Testとする)
  4. 解凍した中に“libs”というファイルがあるので、Smarty_Testに丸ごと入れます
  5. 更に“templates”“templates_c”というフォルダをSmarty_Testの中に作ります
  6. “templates”の中にWEBページの元となるtplファイルを入れます(仮にindex.tplとします)
  7. Smarty_Testの中にindex.tpl通りに作動するphpファイルを置きます(仮にindex.phpとします)
  8. WEB上でhttp://localhost/smarty/index.phpが問題なく記載通りに開けたら完成
|-xampp
|   |-htdocs
|   |   |-Smarty_Test
|   |   |   |-libs
|   |   |   |   |-plugins
|   |   |   |   |-sysplugins
|   |   |   |   |-Autoloader.php
|   |   |   |   |-Smarty.class.php
|   |   |   |   |-SmartyBC.class.php
|   |   |   |   |-debug.tpl
|   |   |   |
|   |   |   |-templates_c
|   |   |   |-templates
|   |   |   |   |-index.tpl
|   |   |   |
|   |   |   |-index.php
<!DOCTYPE html>
<html lang="ja">
    <head>
        <meta charset="utf-8">
        <title>smartyのテスト</title>
    </head>
    <body>
        ようこそ、{$name}さん<br />
        HelloWorld!
    </body>
</html>
<?php
    require "./libs/Smarty.class.php";
    $smarty = new Smarty();
    $smarty->assign('name', '私');
    $smarty->display('index.tpl');
« 引数のデフォルト値を設定するmysql 基礎 »

Sponsored Link

コメントする

記事の感想や修正依頼等ありましたら、コメントをお願いいたします