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 it to your site directory, and create templates and Templates_c two directories under the site root directory.
The establishment of the test.php, the contents are as follows:
<?php
Include_once ('./smarty/smarty.class.php '); $smarty = new Smarty ();
$smarty-> template_dir = "./templates"; Template Storage Directory
$smarty-> compile_dir = "./templates_c"; Compiling 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 in the Templates directory:
<body>
{{$test}}}
</body>
Open test.php, if you see OK on the Smarty installation success!
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.
A Free Trial That Lets You Build Big!
Start building with 50+ products and up to 12 months usage for Elastic Compute Service