ThinkPHP分组下自定义标签库实例_PHP
ThinkPHP
本文实例讲述了ThinkPHP分组下自定义标签库的实现方法。分享给大家供大家参考。具体如下:
自定义标签库应该位于ThinkPHP\\Extend\\Driver\\TagLib目录下
1 新建标签类库文件名为TagLibBlog.class.php。
2 编辑刚才新建的类库文件,新建一个类,继承TagLib父类
代码如下:
import('TagLib');
class TagLibBlog extends TagLib {
}
3 在类中声明一个protected成员变量$tags
代码如下:
class TagLibBlog extends TagLib {
protected $tags =array(
'mynav'=>array('attr'=>'limit,order','close'=>1)
/* www.bitsCN.com
这里$tags数组内,每个单元也就是每一行代表一个标签,例如{dede:article},我们这里也定义了一个mynav,
然后每一行标签的键名就是标签名,键值是一个数组,该数组包含两个单元,第一个就是attr,就是标签中得属性,以逗号分隔,
如num,typeid等等,close的值如果是0的话就是非闭合标签,1的话就是闭合,意思是要以来结尾
*/
);
}
4 定义了标签后,我们需要实现标签的功能,这里直接在类文件下声明一个函数,以_开头,以标签名 mynav结尾的函数名
代码如下:
public function _mynav($attr,$content){
$attr=$this->parseXmlAttr($attr);
import('@.Class.Tool');
$categories=M('category')->limit($attr['limit'])->order($attr['order'])->select();
$categories=Tool::formatMultiArray($categories);
$str='';
for($i=0;$i
'/[field.id]/',
'/[field.name]/'
);
$replace=array(
$categories[$i]['id'],
$categories[$i]['name']
);
$str.=preg_replace($model,$replace,$content);
}
return $str;
}
定义好标签后,需要在项目公用配置文件中加载标签库
config.php
代码如下:
//加载标签库
'APP_AUTOLOAD_PATH'=>'@.TagLib',
'TAGLIB_BUILD_IN'=>'Cx,Blog',
标签库完整源码如下:
import('TagLib');
class TagLibBlog extends TagLib {
protected $tags=array(
'mynav'=>array('attr'=>'limit,order','close'=>1)
);
public function _mynav($attr,$content){
$attr=$this->parseXmlAttr($attr);
import('@.Class.Tool');
$categories=M('category')->limit($attr['limit'])->order($attr['order'])->select();
$categories=Tool::formatMultiArray($categories);
$str='';
for($i=0;$i
'/[field.id]/',
'/[field.name]/'
);
$replace=array(
$categories[$i]['id'],
$categories[$i]['name']
);
$str.=preg_replace($model,$replace,$content);
}
return $str;
}
}
?>
模板中测试:
代码如下:
希望本文所述对大家的ThinkPHP框架程序设计有所帮助。

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

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

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

Hot Topics

An avatar on Netflix is a visual representation of your streaming identity. Users can go beyond the default avatar to express their personality. Continue reading this article to learn how to set a custom profile picture in the Netflix app. How to quickly set a custom avatar in Netflix In Netflix, there is no built-in feature to set a profile picture. However, you can do this by installing the Netflix extension on your browser. First, install a custom profile picture for the Netflix extension on your browser. You can buy it in the Chrome store. After installing the extension, open Netflix on your browser and log into your account. Navigate to your profile in the upper right corner and click

To run the ThinkPHP project, you need to: install Composer; use Composer to create the project; enter the project directory and execute php bin/console serve; visit http://localhost:8000 to view the welcome page.

ThinkPHP has multiple versions designed for different PHP versions. Major versions include 3.2, 5.0, 5.1, and 6.0, while minor versions are used to fix bugs and provide new features. The latest stable version is ThinkPHP 6.0.16. When choosing a version, consider the PHP version, feature requirements, and community support. It is recommended to use the latest stable version for best performance and support.

Steps to run ThinkPHP Framework locally: Download and unzip ThinkPHP Framework to a local directory. Create a virtual host (optional) pointing to the ThinkPHP root directory. Configure database connection parameters. Start the web server. Initialize the ThinkPHP application. Access the ThinkPHP application URL and run it.

How to customize shortcut key settings in Eclipse? As a developer, mastering shortcut keys is one of the keys to improving efficiency when coding in Eclipse. As a powerful integrated development environment, Eclipse not only provides many default shortcut keys, but also allows users to customize them according to their own preferences. This article will introduce how to customize shortcut key settings in Eclipse and give specific code examples. Open Eclipse First, open Eclipse and enter

Performance comparison of Laravel and ThinkPHP frameworks: ThinkPHP generally performs better than Laravel, focusing on optimization and caching. Laravel performs well, but for complex applications, ThinkPHP may be a better fit.

1. The picture below is the default screen layout of edius. The default EDIUS window layout is a horizontal layout. Therefore, in a single-monitor environment, many windows overlap and the preview window is in single-window mode. 2. You can enable [Dual Window Mode] through the [View] menu bar to make the preview window display the playback window and recording window at the same time. 3. You can restore the default screen layout through [View menu bar>Window Layout>General]. In addition, you can also customize the layout that suits you and save it as a commonly used screen layout: drag the window to a layout that suits you, then click [View > Window Layout > Save Current Layout > New], and in the pop-up [Save Current Layout] Layout] enter the layout name in the small window and click OK

ThinkPHP installation steps: Prepare PHP, Composer, and MySQL environments. Create projects using Composer. Install the ThinkPHP framework and dependencies. Configure database connection. Generate application code. Launch the application and visit http://localhost:8000.
