Web Memo/Smarty1
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
]
開始行:
*初めてのSmarty [#d606beab]
RIGHT:更新日&lastmod();
**Smartyパッケージのインストール [#l248e9e2]
[[ここを見る>Linux Memo/Smarty]]
**設定 [#s8089892]
Smartyはデフォルトではテンプレートが変更されたときはコン...
Smarty/libs/Smarty.class.phpの
* @var boolean
*/
// var $force_compile = false;
var $force_compile = true;
にする
**はじめに [#zded4ecb]
Smartyの環境を設定する自分用のクラスをSmartyクラスの継承...
''ismSmarty.class.php''
<?php
define('SMARTY_DIR', '/usr/local/Smarty/libs/');
require_once(SMARTY_DIR . 'Smarty.class.php');
class ismSmarty extends Smarty{
public function __construct(){
// $this->Smarty(); <=必要か不明
$this->template_dir = '/home/okada/smatry_test/t...
$this->compile_dir = '/home/okada/smatry_test/t...
$this->config_dir = '/home/okada/smatry_test/c...
$this->cache_dir = '/home/okada/smatry_test/c...
}
}
このクラスではSmarty.class.phpのパスと、このクラスのオブ...
**変数について [#pe107f9b]
変数には単純変数、単純配列、連想配列、オブジェクト変数が...
<?php
//先の自分用のクラスのパスを指定
include("../ismSmarty.class.php");
$Mysmarty = new ismSmarty();
//単純変数
$Mysmarty->assign("name", "QRA");
//
$Mysmarty->assign("word",array("Hello", "world", array("...
//
$Mysmarty->assign("data",array("call"=>"JE2ISM", "QTH"=>...
県", "QTH2"=>"伊勢市", "JCC"=>"21")));
//オブジェクト変数
//クラスの定義は後からでもOKなようだ。
$obj = new ismClass("山田花子", "2004/05/06");
$Mysmarty->assign("object", $obj); //オブジェクト変数を...
$Mysmarty->display("test01.tpl");
class ismClass{
function __construct($_name, $_birth){
$this->name = $_name;
$this->birth = $_birth;
}
public $name;
public $birth;
function getage(){
return floor((time()-strtotime($this->birth))/(60...
}
}
?>
***テンプレート [#q1b7f1ff]
場所は/home/okada/smatry_test/templatesで
''test01.tpl''
{* Smarty テンプレートのテスト *}
<html>
<body>
名前のことを {$name} といいます <br>
初めての言語学習は" {$word[0]} {$word[1]} " です<br>
DE {$word[2][0]}{$word[2][1]} <br>
コールは{$data.call}<br>
住所は{$data.QTH.QTH1}{$data.QTH.QTH2}<br>
JCC: {$data.QTH.JCC}<br>
名前 : {$object->name} <br>
誕生日:{$object->birth} <br>
年齢: {$object->getage()} <br>
</body>
</html>
終了行:
*初めてのSmarty [#d606beab]
RIGHT:更新日&lastmod();
**Smartyパッケージのインストール [#l248e9e2]
[[ここを見る>Linux Memo/Smarty]]
**設定 [#s8089892]
Smartyはデフォルトではテンプレートが変更されたときはコン...
Smarty/libs/Smarty.class.phpの
* @var boolean
*/
// var $force_compile = false;
var $force_compile = true;
にする
**はじめに [#zded4ecb]
Smartyの環境を設定する自分用のクラスをSmartyクラスの継承...
''ismSmarty.class.php''
<?php
define('SMARTY_DIR', '/usr/local/Smarty/libs/');
require_once(SMARTY_DIR . 'Smarty.class.php');
class ismSmarty extends Smarty{
public function __construct(){
// $this->Smarty(); <=必要か不明
$this->template_dir = '/home/okada/smatry_test/t...
$this->compile_dir = '/home/okada/smatry_test/t...
$this->config_dir = '/home/okada/smatry_test/c...
$this->cache_dir = '/home/okada/smatry_test/c...
}
}
このクラスではSmarty.class.phpのパスと、このクラスのオブ...
**変数について [#pe107f9b]
変数には単純変数、単純配列、連想配列、オブジェクト変数が...
<?php
//先の自分用のクラスのパスを指定
include("../ismSmarty.class.php");
$Mysmarty = new ismSmarty();
//単純変数
$Mysmarty->assign("name", "QRA");
//
$Mysmarty->assign("word",array("Hello", "world", array("...
//
$Mysmarty->assign("data",array("call"=>"JE2ISM", "QTH"=>...
県", "QTH2"=>"伊勢市", "JCC"=>"21")));
//オブジェクト変数
//クラスの定義は後からでもOKなようだ。
$obj = new ismClass("山田花子", "2004/05/06");
$Mysmarty->assign("object", $obj); //オブジェクト変数を...
$Mysmarty->display("test01.tpl");
class ismClass{
function __construct($_name, $_birth){
$this->name = $_name;
$this->birth = $_birth;
}
public $name;
public $birth;
function getage(){
return floor((time()-strtotime($this->birth))/(60...
}
}
?>
***テンプレート [#q1b7f1ff]
場所は/home/okada/smatry_test/templatesで
''test01.tpl''
{* Smarty テンプレートのテスト *}
<html>
<body>
名前のことを {$name} といいます <br>
初めての言語学習は" {$word[0]} {$word[1]} " です<br>
DE {$word[2][0]}{$word[2][1]} <br>
コールは{$data.call}<br>
住所は{$data.QTH.QTH1}{$data.QTH.QTH2}<br>
JCC: {$data.QTH.JCC}<br>
名前 : {$object->name} <br>
誕生日:{$object->birth} <br>
年齢: {$object->getage()} <br>
</body>
</html>
ページ名: