search
HomeBackend DevelopmentPHP Tutorial让你的Smarty更聪明_PHP教程

一、扩展你的Smarty 1、准备功夫 PHP代码:-------------------------------------------------------------------------------- function Smarty_function_page ( $params, &$Smarty ) { $href = #; $space =  ; $frist = NULL; $last = NULL; $page = 5; extract($params); if ( !$row || $row $pages ) { $from = 1; $to = $pages; } else { if ( $from $pages ) { $from = $curr_page - $pages + $to; $to = $pages; if ( ( $to - $from ) = 1 ) $p[frist] = . $frist . ; if ( $prev && ( $i = $curr_page - 1 ) >= 1 ) $p[prev] = . $prev . ; for( $i = $from; $i

New Document {page row=10} {page row=10 now=5} {page row=10 now=5 href=DownloadFilesa2004-11-02"plugins.php$a=1&b=2&page=" frist="第一页" prev="上一页" next="下一页" last="最后页"} {page row=10 now=5 href=DownloadFilesa2004-11-02"plugins.php$a=1&b=2&page=" frist="第一页" prev="上一页" next="下一页" last="最后页"} {page row=10 now=1 href=DownloadFilesa2004-11-02"plugins.php$a=1&b=2&page=" frist="第一页" prev="上一页" next="下一页" last="最后页"} {page row=10 now=10 href=DownloadFilesa2004-11-02"plugins.php$a=1&b=2&page=" frist="第一页" prev="上一页" next="下一页" last="最后页"} -------------------------------------------------------------------------------- 将上面的代码命名为"plugins.html"保存到Smarty的template目录里 2、测试程序 PHP代码:-------------------------------------------------------------------------------- $Smarty->display( plugins.html ); -------------------------------------------------------------------------------- 3、使用说明 我懒得打了,对比一下"plugins.html"的5个{page}用法,以及看看显示出来的效果就明白是什么了 4、插件说明 “《Smarty手册》第十六章.以插件扩展Smarty ”的应用。像中文字符截取之类的都可以以plugins扩展Smarty,Smarty自带的截取不支持中文。 __________________ 二、Smarty自动生成静态页面 如果你的文件扩展名为".html"~~~~~嘿嘿,这不就是静态页面了吗?-_-! 至于怎么取得静态的文件名呢? PHP代码:-------------------------------------------------------------------------------- /** * */ class template extends Smarty { /** * */ function template () { $this->Smarty(); } // end func /** * */ function name ( $tpl_file, $cache_id = null, $compile_id = null ) { if (!isset($compile_id)) $compile_id = $this->compile_id; $_auto_id = $this->_get_auto_id( $cache_id, $compile_id ); $_cache_file = $this->_get_auto_filename( $this->cache_dir, $tpl_file, $_auto_id ); return basename( $_cache_file ); } // end func } // end class $Smarty = new template; $file_name = $Smarty->name( plugins.html, cache_name );#html文件的名字(不包含路径) $Smarty->cache_lifetime = -1;#静态文件永不过期 $Smarty->fetch( plugins.html, cache_name );#生成静态html文件 这是村里翻译的,实际上Smarty的应用还远不止于此。 One of the unique aspects about Smarty is the template compling. This means Smarty reads the template files and creates PHP scripts from them. Once they are created, they are executed from then on. Therefore there is no costly template file parsing for each request, and each template can take full advantage of PHP compiler cache solutions such as Zend Accelerator (http://www.zend.com) or PHP Accelerator (http://www.php-accelerator.co.uk). Smarty的特点之一是"模板编译"。意思是Smarty读取模板文件然后用他们创建php脚本。这些脚本创建以后将被执行。因此并没有花费模板文件的语法解析,同时每个模板可以享受到诸如Zend加速器(http://www.zend.com) 或者PHP加速器(http://www.php-accelerator.co.uk)。这样的php编译器高速缓存解决方案。 Some of Smartys features: Smaty的一些特点: It is extremely fast. 非常非常的快! It is efficient since the PHP parser does the dirty work. 用php分析器干这个苦差事是有效的 No template parsing overhead, only compiles once. 不需要多余的模板语法解析,仅仅是编译一次 It is smart about recompiling only the template files that have changed. 仅对修改过的模板文件进行重新编译 You can make custom functions and custom variable modifiers, so the template language is extremely extensible. 可以编辑自定义函数和自定义变量,因此这种模板语言完全可以扩展 Configurable template delimiter tag syntax, so you can use {}, {{}}, , etc. 可以自行设置模板定界符,所以你可以使用{}, {{}}, , 等等 The if/elseif/else/endif constructs are passed to the PHP parser, so the {if ...} expression syntax can be as simple or as complex as you like. 诸如 if/elseif/else/endif 语句可以被传递到php语法解析器,所以 {if ...} 表达式是简单的或者是复合的,随你喜欢啦 Unlimited nesting of sections, ifs, etc. allowed. 如果允许的话,section之间可以无限嵌套 It is possible to embed PHP code right in your template files, although this may not be needed (nor recommended) since the engine is so customizable. 引擎是可以定制的.可以内嵌php代码到你的模板文件中,虽然这可能并不需要(不推荐) Built-in caching support 内建缓存支持 Arbitrary template sources 独立模板文件 Custom cache handling functions 可自定义缓存处理函数 Plugin architecture 插件体系结构

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/531853.htmlTechArticle一、扩展你的Smarty 1、准备功夫 PHP代码:-------------------------------------------------------------------------------- function Smarty_function_page ( $params, $space...
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
php如何使用PHP的SNMP扩展?php如何使用PHP的SNMP扩展?Jun 02, 2023 am 10:22 AM

PHP的SNMP扩展是一种使PHP能够通过SNMP协议与网络设备进行通信的扩展程序。使用该扩展可以方便地获取和修改网络设备的配置信息,例如路由器、交换机等设备的CPU、内存、网络接口等信息,也可以进行诸如开关设备端口等控制操作。本文将介绍SNMP协议的基础知识、PHP的SNMP扩展的安装方法以及如何在PHP中使用SNMP扩展进行网络设备的监控和控制。一、SN

php如何使用PHP的ZipArchive扩展?php如何使用PHP的ZipArchive扩展?Jun 02, 2023 am 08:13 AM

PHP是一种流行的服务器端语言,可以用来开发Web应用程序和处理文件。PHP的ZipArchive扩展是一个强大的工具,可以在PHP中操作zip文件。在这篇文章中,我们将介绍如何使用PHP的ZipArchive扩展来创建、读取和修改zip文件。一、安装ZipArchive扩展在使用ZipArchive扩展之前,需要确保已经安装了这个扩展。安装方法如下:1.安

php如何使用PHP的Phar扩展?php如何使用PHP的Phar扩展?May 31, 2023 pm 11:31 PM

随着PHP的发展和应用场景的不断扩大,Phar扩展已经成为PHP编程中的重要一环。Phar是PHPArchive的缩写,它可以将多个PHP文件和资源打包成单个文件,方便进行分发和管理。本文将介绍如何使用PHP的Phar扩展来进行打包和管理。安装Phar扩展首先,我们需要检查PHP是否已经安装Phar扩展。在Linux下,通过终端输入以下命令:php-m

php如何使用PHP的POSIX扩展?php如何使用PHP的POSIX扩展?Jun 03, 2023 am 08:01 AM

PHP的POSIX扩展是一组允许PHP与POSIX兼容操作系统进行交互的函数和常量。POSIX(PortableOperatingSystemInterface)是一组操作系统接口标准,旨在允许软件开发人员编写可在各种UNIX或UNIX类操作系统上运行的应用程序。本文将介绍如何使用PHP的POSIX扩展,包括安装和使用。一、安装PHP的POSIX扩展在

PHP和WebDriver扩展:如何模拟用户点击和输入操作PHP和WebDriver扩展:如何模拟用户点击和输入操作Jul 07, 2023 pm 05:10 PM

PHP和WebDriver扩展:如何模拟用户点击和输入操作近年来,随着Web应用程序的快速发展,自动化测试变得越来越重要。在自动化测试中,模拟用户操作是一个关键的环节,它可以使我们更准确地测试和验证我们的应用程序。在PHP开发中,我们通常使用SeleniumWebDriver来实现自动化测试。SeleniumWebDriver是一种强大的工具,它可以模拟

Vue如何实现组件的复用和扩展?Vue如何实现组件的复用和扩展?Jun 27, 2023 am 10:22 AM

随着前端技术的不断发展,Vue已经成为了前端开发中的热门框架之一。在Vue中,组件是其中的核心概念之一,它可以将页面分解为更小,更易管理的部分,从而提高开发效率和代码复用性。本文将重点介绍Vue如何实现组件的复用和扩展。一、Vue组件复用mixinsmixins是Vue中的一种共享组件选项的方式。Mixins允许将多个组件的组件选项合并成一个对象,从而最大

php如何使用PHP的Tokenizer扩展?php如何使用PHP的Tokenizer扩展?Jun 02, 2023 am 08:25 AM

PHP是一种流行的服务器端脚本语言,因其易用性和灵活性而备受欢迎。PHP的Tokenizer扩展是一种强大的工具,它允许你将PHP代码分解为令牌,以便进行语法分析和其他操作。在本文中,我们将介绍如何使用PHP的Tokenizer扩展,以及它的一些基本概念和用法。令牌(Token)是指代码中的最小单位。Token被解析器(Parser)用于生成抽象语法树(AS

php如何使用PHP的PCRE扩展?php如何使用PHP的PCRE扩展?Jun 01, 2023 pm 06:10 PM

PHP是一种广泛使用的服务器端编程语言,它包含许多有用的扩展和工具,其中之一是PCRE(PerlCompatibleRegularExpressions)扩展。在本文中,我们将介绍PHP的PCRE扩展以及如何在PHP中使用它来进行正则表达式匹配。什么是PCREPCRE扩展是PHP中的一个正则表达式库,它基于Perl语言中的正则表达式语法,并提供了一套A

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.