Download the latest smarty:http://smarty.php.net/
Current Latest Version: 2.6.18
After decompression, rename the Libs directory in the directory to smarty, copy to your site directory, and build templates and Templates_c two directories under the site root directory.
Set up the test.php, which reads as follows:
Include_once ('./smarty/smarty.class.php '); $smarty = new Smarty ();
$smarty-Template_dir = "./templates"; Template Storage Directory
$smarty-Compile_dir = "./templates_c"; Compiling the Directory
$smarty-Left_delimiter = "{"; Left delimiter
$smarty-Right_delimiter = "}}"; Right delimiter
$smarty-Assign (' Test ', ' OK ');
$smarty, display (' test.html ');
?>
Give Templates_c permission 755
Create a new test.html under the Templates directory:
{{$test}}
Open test.php, if you see OK, it means that your smarty installation is successful!
The above describes the S.m.art exhibition smarty installation configuration method, including the S.m.art exhibition aspect of the content, I hope that the PHP tutorial interested in a friend helpful.