current location: Home > Download > Learning resources > php e-book > php smarty template tutorial

php smarty template tutorial
Classify: Learning materials / php e-book | Release time: 2018-02-22 | visits: 2838210 |
Download: 218 |
Latest Downloads
Horror Beat Phase Maker
Himalayan Children
Zebra AI
Supermarket Manager Simulator
Red Alert Online
Delta Force
Pokémon UNITE
Fantasy Aquarium
Girls Frontline
Wings of Stars
24 HoursReading Leaderboard
- 1 Top Tech Deals: Galaxy Watch 7, AirPods 4, AMD Ryzen 5 CPU, and More!
- 2 Oblivion Remastered: All Skill Trainer Locations
- 3 Oblivion Remastered: How To Get Varla Stones
- 4 Get a 512GB Samsung microSD Card for $30 Today
- 5 4 Ways to Fix Taskbar Color Not Changing in Windows 10 - MiniTool
- 6 Fix Windows Update Check for Updates Grayed out
- 7 Remote Desktop Service Is Currently Busy - Targeted Solutions
- 8 Network Error Message Appears in ChatGPT? Try 7 Ways to Fix! - MiniTool
- 9 iCloud Mail Login/Sign-up | How to Access iCloud Mail PC/Android - MiniTool
- 10 Download and Install Windows ADK for Windows [Full Versions] - MiniTool
- 11 What are the limitations of React?
- 12 Google Cloud vs AWS | Two Services Feature Compared Review - MiniTool
- 13 How to Find Cyberpunk 2077 Saves? How to Back up Them? - MiniTool
- 14 Composer: The Package Manager for PHP Developers
- 15 Smart Guide: Enable/Disable Microsoft Vulnerable Driver Blocklist
Latest Tutorials
-
- Go language practical GraphQL
- 3236 2024-04-19
-
- 550W fan master learns JavaScript from scratch step by step
- 4567 2024-04-18
-
- Getting Started with MySQL (Teacher mosh)
- 2586 2024-04-07
-
- Mock.js | Axios.js | Json | Ajax--Ten days of quality class
- 3294 2024-03-29
MVC is a development model that emphasizes the forced separation of data input, processing, and display.
Smarty usage tutorial
1. How to configure our smarty
After unzipping, place the libs folder in the first-level directory of the website, and then create two folders
templates stores template files
templates_c stores compiled files
Create the initialization file smarty.ini.php again
Note:
1. Generally use <{}>
as the identifier separator for replacement variables.
Two ways to change the delimiter:
1. Change the source code: Smarty.class.php $left_delimiter Not recommended
2. Dynamic modification:
$Smarty->left_delimiter="<{";
$Smarty->right_delimiter="}>";
written before display
2.smarty allocates data
$smarty->assign("Address",$address);
Used to assign values to templates. You can specify a name/number pair or an associative array containing name/numbers.
$smarty->assign("aa",true); //Output 1
$smarty->assign("aa",false); //Output is empty
