我不知道如何安装和工作smarty php。有人请指导我。请简要告诉我如何安装和我需要下载的软件,因为我是这项技术的新手。我在普通的php中试过这个但是我做不到。
答案 0 :(得分:0)
您不需要smarty
的任何特殊安装。您只需要一个名为Smarty.class.php
我建议您查看Smarty Official Page which tells about Installation
这是一个快速示例
<?php
// NOTE: Smarty has a capital 'S'
require_once('Smarty.class.php'); #This is the file you need to require
$smarty = new Smarty();
?>
注意: