Smarty PHP Template Programming And Applications
暫譯: Smarty PHP 模板程式設計與應用
Hasin Hayder, J. P. Maia, Lucian Gheorghe
- 出版商: Packt Publishing
- 出版日期: 2006-03-20
- 售價: $1,710
- 貴賓價: 9.5 折 $1,625
- 語言: 英文
- 頁數: 256
- 裝訂: Paperback
- ISBN: 190481140X
- ISBN-13: 9781904811404
-
相關分類:
PHP
海外代購書籍(需單獨結帳)
買這商品的人也買了...
-
$2,390$2,271 -
$690$538 -
$480$379 -
$550$435 -
$680$537 -
$880$695 -
$480$379 -
$650$514 -
$2,340Understanding the Linux Kernel, 3/e (Paperback)
-
$780$741 -
$650$507 -
$550$435 -
$450$356 -
$900MCTS Self-Paced Training Kit (Exam 70-431): Microsoft SQL Server 2005 Implementation and Maintenance (Hardcover)
-
$700$595 -
$499$424 -
$299Professional Web 2.0 Programming (Paperback)
-
$550$435 -
$750$593 -
$990$891 -
$600$480 -
$980$774 -
$490$417 -
$780$616 -
$590$460
相關主題
商品描述
Description
Smarty is a templating engine for PHP. Designers who are used to working with HTML files can work with Smarty templates, which are HTML files with simple tags while programmers work with the underlying PHP code. The Smarty engine brings the code and templates together. The result of all this is that designers can concentrate on designing, programmers can concentrate on programming, and they don't need to get in each others way so much.
Even if you are developing a site on your own, Smarty is a powerful way to make your code clearer to you and others, as well as easier to debug and modify later.
Table of Contents
- Templating Systems
- Why Use a Templating System?
- The Smartness of Smarty
- Smarty Alternatives
- A Rough Guide to the Software Design Process
- Working in Teams: Layers and Separation of Concerns
- Smarty—The Ultimate Templating System for PHP
- Is Smarty Fast?
- Is Smarty Secure?
- Smarty's Main Features
- Variable Modifiers
- Template Functions
- Debugging
- Plugins
- Filters
- Smarty Internals
- Installing and Configuring Smarty
- Step 1: Obtaining Smarty
- Step 2: Configure PHP to Find the Smarty Libraries
- On Windows
- On Linux
- An Alternative to Step 2: Using Smarty without Having Full Access to the System
- Step 3: Set Up Smarty for Your Application
- Step 4: Verifying the Installation
- Smarty Development Versions on CVS
- Upgrading a Smarty Site
- Summary
- Separation of Concerns
- What Does Concern Mean?
- A Problem-Solving Perspective
- Cross-cutting Concerns
- Roles Involved in Building and Maintaining a Website
- Starting a Smarty Project
- Directory Structure
- Securing our Smarty Project
- The Data Access Layer
- How it Works
- The Business Logic Layer
- How it Works
- The Presentation Layer
- How it Works
- The Result
- Summary
- Development Team Problems: Common Scenarios
- Roles of a Template Designer and a Programmer
- Definitions and Concepts for Designers
- Concept of Reusability and Components
- Splitting into Components
- How to Design Table-less Layouts?
- Handy Built-in Tags
- Choosing an Editor for Template Design
- Collaborating with Programmers
- Summary
- Design Concepts, from HTML to TPL
- Introduction to Smarty Variables
- Starting Templates
- Nonassociative Array
- Associative Array
- Passing Arrays to Smarty Templates and Manipulating Them
- Basic Templating
- Logical Conditions
- Loops
- section
- foreach
- Templates in the Real World
- Calendar
- Database Report
- Data Input Forms
- Email Newsletter
- Running PHP Code Inside your Templates
- Summary
- Smarty under the Hood
- Compile Steps
- Prefilters and Postfilters
- What is a Smarty Modifier?
- Stretch your Imagination with Smarty
- Student Transcript
- Photo Gallery
- Available Modifiers
- capitalize
- count_characters
- cat
- count_paragraphs
- count_words
- date_format
- default
- escape
- indent
- lower
- upper
- nl2br
- regex_replace
- replace
- spacify
- string_format
- strip
- strip_tags
- truncate
- wordwrap
- Combining Modifiers
- Configuration Files
- Summary
- Types of Smarty Functions
- Functions in Action
- Action: Re-using Page Elements with the include Function
- Explanation
- Inserting Dynamic Content
- Passing Variables to Included Templates
- Saving Variables in Configuration Files
- Creating Configuration Sections for Each Page
- Handling Lists in Templates
- Removing Extra White Space from Templates
- Handling JavaScript Code in Templates
- Processing Deeply Nested Arrays
- Cycling Through a List of Values
- Avoiding Spam Indexers
- Form-Related Functions
- More Form-Related Functions
- Summary
- Debugging Smarty Templates
- Semantic Errors
- Common Smarty Errors
- Other Common Smarty Errors
- Smarty Debug Console
- Summary
- Built-in Smarty Variables
- $template_dir
- $compile_dir
- $config_dir
- $plugins_dir
- $debugging
- $error_reporting
- $debug_tpl
- $debugging_ctrl
- $compile_check
- $force_compile
- $caching
- $cache_dir
- $cache_lifetime
- $cache_modified_check
- $php_handling
- $security
- $secure_dir
- $security_settings
- $trusted_dir
- $left_delimiter
- $right_delimiter
- $request_vars_order
- $request_use_auto_globals
- $compile_id
- $use_sub_dirs
- $default_modifiers
- $default_resource_type
- $cache_handler_func
- $autoload_filters
- $config_overwrite
- $config_booleanize
- $config_read_hidden
- $config_fix_newlines
- $default_template_handler_func
- $compiler_file
- $compiler_class
- $config_class
- Handy Built-in Smarty Variables Table
- Built-in Smarty Methods
- assign
- assign_by_ref
- Example: Working of assign and assign_by_ref
- append
- append_by_ref
- clear_assign
- register_function
- unregister_function
- register_object
- unregister_object
- register_block
- unregister_block
- register_compiler_function
- unregister_compiler_function
- register_modifier
- unregister_modifier
- register_resource
- unregister_resource
- register_prefilter
- unregister_prefilter
- register_postfilter
- unregister_postfilter
- register_outputfilter
- unregister_outputfilter
- load_filter
- clear_cache
- clear_all_cache
- is_cached
- clear_all_assign
- clear_compiled_tpl
- template_exists
- get_template_vars
- get_config_vars
- trigger_error
- display
- fetch
- config_load
- get_registered_object
- clear_config
- Summary
- Caching in Smarty
- Dynamically Caching Template Sections
- Clearing the Cache
- Advanced Caching Features
- Using Cache Groups
- Clearing a Cache Group
- Avoiding the Cache
- Creating a Custom Cache Handler
- Optimizing Smarty Applications
- Profiling PHP
- Designing Sites for Effective Caching
- The LastModified and ETag Headers
- The Expires Header
- The CacheControl Header
- Tools: ApacheBench (ab)
- Tools: Xdebug
- Tools: WinCacheGrind
- Summary
- Finding and Installing Plug-ins
- Useful Plug-ins
- HTML List Plug-in
- File Size Format Plug-in
- Google Highlight Plug-in
- Writing your own Plug-ins
- Plug-in Types
- Functions
- Modifiers
- Block Functions
- Compiler Functions
- Prefilters, Postfilters, and Output Filters
- Resources
- Inserts
- Registering Plug-ins
- Example Plug-in: Calendar
- Example Plug-in: Auto-link URLs
- Summary
- Prefilters
- Postfilters
- Output Filters
- Creating Filters
- Registering a Filter at Run Time
- Manually Loading a Filter
- Automatically Loading a Filter
- Filter #1: Remove HTML Comments
- Filter #2: Benchmark Information
- Filter #3: Compress Output with gzip
- Filter #4: Search Engine Highlight
- Summary
- Translation Infrastructure: Gettext
- Configuring PHP with Gettext
- Simple PHP Example
- Setting Up the Gettext Files
- Using Gettext with Smarty
- Generating a PO File
- Advanced Features of Smarty Gettext
- Summary
商品描述(中文翻譯)
描述
Smarty 是一個用於 PHP 的模板引擎。習慣於使用 HTML 文件的設計師可以使用 Smarty 模板,這些模板是帶有簡單標籤的 HTML 文件,而程序員則處理底層的 PHP 代碼。Smarty 引擎將代碼和模板結合在一起。這樣的結果是設計師可以專注於設計,程序員可以專注於編程,彼此之間不需要過多干擾。即使您是獨自開發網站,Smarty 也是一種強大的方式,可以使您的代碼對您和其他人更清晰,並且更容易進行調試和修改。
目錄
前言
第 1 章:Smarty 簡介
- 模板系統
- 為什麼使用模板系統?
- Smarty 的聰明之處
- Smarty 的替代品
- 軟體設計過程的粗略指南
- 團隊合作:層次與關注點分離
- Smarty—PHP 的終極模板系統
- Smarty 快嗎?
- Smarty 安全嗎?
- Smarty 的主要特性
- 變數修飾符
- 模板函數
- 調試
- 插件
- 過濾器
- Smarty 內部
- 安裝和配置 Smarty
- 步驟 1:獲取 Smarty
- 步驟 2:配置 PHP 以找到 Smarty 庫
- 在 Windows 上
- 在 Linux 上
- 步驟 2 的替代方案:在沒有完全訪問系統的情況下使用 Smarty
- 步驟 3:為您的應用程序設置 Smarty
- 步驟 4:驗證安裝
- CVS 上的 Smarty 開發版本
- 升級 Smarty 網站
- 總結
第 2 章:Smarty 網站架構
- 關注點分離
- 關注點是什麼意思?
- 問題解決的視角
- 交叉關注點
- 建立和維護網站的角色
- 開始一個 Smarty 項目
- 目錄結構
- 確保我們的 Smarty 項目安全
- 數據訪問層
- 它是如何工作的
- 業務邏輯層
- 它是如何工作的
- 表現層
- 它是如何工作的
- 結果
- 總結
第 3 章:設計師需要知道的
- 開發團隊問題:常見場景
- 模板設計師和程序員的角色
- 設計師的定義和概念
- 可重用性和組件的概念
- 拆分為組件
- 如何設計無表格佈局?
- 方便的內建標籤
- 選擇模板設計的編輯器
- 與程序員合作
- 總結
第 4 章:創建模板
- 設計概念,從 HTML 到 TPL
- Smarty 變數介紹
- 開始模板
- 非關聯數組
- 關聯數組
- 將數組傳遞給 Smarty 模板並操作它們
- 基本模板
- 邏輯條件
- 循環
- section
- foreach
- 現實世界中的模板
- 日曆
- 數據庫報告
- 數據輸入表單
- 電子郵件通訊
- 在模板中運行 PHP 代碼
- 總結
第 5 章:進階模板
- Smarty 的內部運作
- 編譯步驟
- 前過濾器和後過濾器
- 什麼是 Smarty 修飾符?
- 用 Smarty 擴展您的想像力
- 學生成績單
- 照片庫
- 可用的修飾符
- capitalize
- count_characters
- cat
- count_paragraphs
- count_words
- date_format
- default
- escape
- indent
- lower
- upper
- nl2br
- regex_replace
- replace
- spacify
- string_format
- strip
- strip_tags
- truncate
- wordwrap
- 組合修飾符
- 配置文件
- 總結
第 6 章:Smarty 函數
- Smarty 函數的類型
- 函數的實際應用
- 行動:使用 include 函數重用頁面元素
- 解釋
- 插入動態內容
- 將變數傳遞給包含的模板
- 在配置文件中保存變數
- 為每個頁面創建配置區段
- 在模板中處理列表
- 從模板中刪除多餘的空白
- 在模板中處理 JavaScript 代碼
- 處理深度嵌套的數組
- 循環遍歷值列表
- 避免垃圾郵件索引器
- 與表單相關的函數
- 更多與表單相關的函數
- 總結
第 7 章:設計師的調試
- 調試 Smarty 模板
- 語義錯誤