Smarty
Day01-----Usage of smarty
Function: Separate php+html, program and art
Usage:
1. Download the source code package
2. Directory structure
libs
source code file
Smarty .class.php
template //Template file html file
template_c //Template compilation file automatically generated during program running
3. Instantiation
require "Smarty.class.php";
$smartyOb=new Smarty( );
4. Configuration
Tell Smarty which directory is where template html is placed
$smartyOb->setTemplateDir(path);
Tell smarty which directory is where compiled files are placed
$smartyOb->setCompileDir(path)
5. Display template
$smartyOb->display("template name and path");
How to pass value to template
$smartyOb->assign('name on template', passed variable);
How to call on template
Template tag
{$name}
Array
{$array name.subscript}
Two-dimensional array
array(
0=>array('title'=>'t1','pubtime'=>1234567890 ,'author'=>'xiaoli'),
1=>array('title'=>'t2','pubtime'=>1334567890,'author'=>'xiaoli'),
array ('title'=>'t3','pubtime'=>1434567890,'author'=>'xiaoli'),
array('title'=>'t4','pubtime'=>1534567890 ,'author'=>'xiaoli'),
)
Traverse the array
{foreach array name as variable name}
{$variable name.title}
{/foreach}
subscript value
Number of loops
How many times is the current loop
Is it the first loop
Is it the last loop
Case:
Implement an interlaced background color change
Code
Exercise:
Underline (dashed line) each li, except the last line
Understand the content:
Attributes:
Exercise:
Use section to achieve different background colors for alternate lines
Variable regulator
Specification of template label delimiter:
$smartyOb- >left_delimiter=" $smartyOb->right_delimiter="}>";
day02---------, review the content of day01 and expand new knowledge
Smarty
1. Smarty, placed in the php main program
2. Configuration
$smartyOb->setTemplateDir()
$smartyOb->setCompileDir()
$smartyOb->left_delimiter()
$smartyOb->right_delimiter( )
3. Pass value to the template
$smartyOb->assign("template variable name", variable);
4. Display the template
$smartyOb->display(path);
{$name}
{$array .subscript}
{foreach array name as variable}
{$variable name}
{/foreach}
Label attribute:
{$variable name@key}
{$variable name@index}
{$variable name@iteration }
{$variable name@total}
{$variable name@first}
{$variable name@last}
{if condition}
{else}
{/if}
Variable regulator:
{first parameter |Function name: second parameter:......}
Article detail page:
02_detail.php?id=5
1. Configure smarty
2. Receive article id
3. Instantiate pdo
4. Spell sql statement
5. Execute
6. Get data
7. Pass value to template
8. Display template
9. Set template tags and use the data passed by the main program
Page splitting
{include file="template path"}
Register function
function fun1(){
return 'abc';
}
$smartyOb->registerPlugin("function","template function name","registered function name");
in Called on the template:
{template function name = value name = value....}
How to pass parameters? ? ?
1. The number of parameters is at most two.
The first one receives all the parameters passed on the template,
The second parameter receives the current smarty object.
Caching
Data in the database is cached.
Benefits: Reduces the pressure on the mysql server
1. Specify the storage directory for cache files
$smartyOb->setCacheDir(ROOT."day02/cache");
2. Turn on caching
$smartyOb->caching=true;
3. Specify the cache life cycle.
$smartyOb->cache_lifetime=100;//seconds
Function: Determine whether the cache file exists and is valid
$smartyOb->isCached("Template name and path",id)
$smartyOb->display("Template Name and path",id);
The above is an introduction to --------smarty, which is new to me, including some aspects. I hope it will be helpful to friends who are interested in PHP tutorials.

许多用户在选择智能手表的时候都会选择的华为的品牌,其中华为GT3pro和GT4都是非常热门的选择,不少用户都很好奇华为GT3pro和GT4有什么区别,下面就就给大家介绍一下二者。华为GT3pro和GT4有什么区别一、外观GT4:46mm和41mm,材质是玻璃表镜+不锈钢机身+高分纤维后壳。GT3pro:46.6mm和42.9mm,材质是蓝宝石玻璃表镜+钛金属机身/陶瓷机身+陶瓷后壳二、健康GT4:采用最新的华为Truseen5.5+算法,结果会更加的精准。GT3pro:多了ECG心电图和血管及安

为什么截图工具在Windows11上不起作用了解问题的根本原因有助于找到正确的解决方案。以下是截图工具可能无法正常工作的主要原因:对焦助手已打开:这可以防止截图工具打开。应用程序损坏:如果截图工具在启动时崩溃,则可能已损坏。过时的图形驱动程序:不兼容的驱动程序可能会干扰截图工具。来自其他应用程序的干扰:其他正在运行的应用程序可能与截图工具冲突。证书已过期:升级过程中的错误可能会导致此issu简单的解决方案这些适合大多数用户,不需要任何特殊的技术知识。1.更新窗口和Microsoft应用商店应用程

第1部分:初始故障排除步骤检查苹果的系统状态:在深入研究复杂的解决方案之前,让我们从基础知识开始。问题可能不在于您的设备;苹果的服务器可能会关闭。访问Apple的系统状态页面,查看AppStore是否正常工作。如果有问题,您所能做的就是等待Apple修复它。检查您的互联网连接:确保您拥有稳定的互联网连接,因为“无法连接到AppStore”问题有时可归因于连接不良。尝试在Wi-Fi和移动数据之间切换或重置网络设置(“常规”>“重置”>“重置网络设置”>设置)。更新您的iOS版本:

php提交表单通过后,弹出的对话框怎样在当前页弹出php提交表单通过后,弹出的对话框怎样在当前页弹出而不是在空白页弹出?想实现这样的效果:而不是空白页弹出:------解决方案--------------------如果你的验证用PHP在后端,那么就用Ajax;仅供参考:HTML code<form name="myform"

在现代web开发中,前后端分离已经成为了一个非常流行的趋势,它能够让开发者们更好地组织项目并且提高了项目开发的效率。PHP和Smarty是两个非常常用的技术,它们可以用来实现前后端分离的开发方式。本文将会介绍如何使用PHP和Smarty来实现前后端分离开发。什么是前后端分离开发在传统的web开发中,前端主要负责页面的呈现以及与后端交互的逻辑。后端则主要负责业

现如今,网站的开发离不了一个重要的组成部分——模板引擎。模板引擎是指一种将页面模板和数据结合起来生成具有特定格式的html代码的工具。在各种网站开发框架中,模板引擎是一个必不可少的组件,因为模板引擎可以大量减少代码的重复性和提高页面的动态性。其中一种最常见和流行的模板引擎是Smarty。Smarty是一个基于PHP语言开发的DSL(DomainSpecif

watch4pro和gt各自具有不用的特点和适用场景,如果注重功能的全面性、高性能和时尚外观,同时愿意承担较高的价格,那么Watch 4 Pro可能更适合。如果对功能要求不高,更注重电池续航和价格的合理性,那么GT系列可能更适合。最终的选择应根据个人需求、预算和喜好来决定,建议在购买前仔细考虑自己的需求,并参考各种产品的评测和比较,以做出更明智的选择。

PHP是一种强大的服务器端脚本语言,可以用于开发Web应用程序。在Web开发的早期阶段,程序员们使用了很多HTML和JavaScript代码来开发Web应用程序。但是,这种方法很难维护和管理,因为HTML和JavaScript代码可能会变得非常复杂。为了解决这个问题,Smarty模板引擎被创建出来。Smarty是一种基于PHP开发的模板引擎,用于管理和生成W


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Zend Studio 13.0.1
Powerful PHP integrated development environment

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.
