Download the latest Smarty simplest test example to test whether smarty is installed successfully download the latest Smarty: http://smarty.php.net/
Latest version: 2.6.18
Decompress the package and rename the libs directory in the directory to smarty. copy the libs directory to your website directory, and create the templates and templates_c directories under the website root directory.
Create test. php with the following content:
Include_once ('./Smarty. class. php'); $ smarty = new Smarty ();
$ Smarty-> template_dir = "./templates"; // template storage directory
$ Smarty-> compile_dir = "./templates_c"; // compile the Directory
$ Smarty-> left_delimiter = "{"; // left delimiter
$ Smarty-> right_delimiter = "}"; // right delimiter
$ Smarty-> assign ('test', 'OK ');
$ Smarty-> display('test.html ');
?>
Grant templates_c permissions to 755
Create test.html in the templatesdirectory:
{{$ Test }}
Open test. php. if OK is displayed, your smarty is successfully installed!
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.