オブジェクトの簡単な使い方
オブジェクトの宣言は変数の宣言と同じで、assign を通じて宣言されます。
test.php ファイルを変更します:
<?php require "./libs/Smarty.class.php"; $smarty = new Smarty; class Person{ public $name="smile"; public $age=25; } $person=new Person(); $smarty->assign('address',$person); $smarty->display('./templates/test.html');
test.html ファイルを変更します:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>test</title> </head> <body> <!--html的注释--> {*smarty模板的注释*} 我叫{$address->name}今年{$address->age}岁<br> </body> </html>
実行中の表示は次のとおりです: