Home > Backend Development > PHP Tutorial > Notes on using Smarty in PHP and several ways to access variables_PHP Tutorial

Notes on using Smarty in PHP and several ways to access variables_PHP Tutorial

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-07-21 15:22:24
Original
974 people have browsed it

$tpl=new Smarty();//Create a smarty object. I am using Smarty-3.1.6 version
1. Set the smarty template path $tpl->setTemplateDir(); The default is templates
2. Set smarty template compilation path $tpl->setCompileDir(); The default is templates_c
3. Set the left and right separators of smarty template engine,

 $tpl->left_delimiter="<{";

$tpl->right_delimiter="}>";

By default: public $left_delimiter = "{";//smarty source code

public $right_delimiter = "}";//smarty source code

Why do we need to change these separators?

Because for example, in earlier versions of smarty engine templates, errors will be reported and cannot be automatically recognized.
For example:

or in javascript

Copy code The code is as follows:

Latest Issues
php data acquisition?
From 1970-01-01 08:00:00
0
0
0
PHP extension intl
From 1970-01-01 08:00:00
0
0
0
How to learn php well
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template