Home Backend Development PHP Tutorial About the use of thinkphp behavior

About the use of thinkphp behavior

Jul 07, 2018 pm 02:39 PM

这篇文章主要介绍了关于thinkphp行为的使用,有着一定的参考价值,现在分享给大家,有需要的朋友可以参考一下

行为说简单一点就是程序执行到某一步会自动调用的一段操作,示例如下

第一步、添加行为标签位

$param['ids'] = $ids;
Hook::listen('event_reject',$param);
Copy after login

参数$param可选

第二步、行为绑定

在项目目录APP_PATH下的tags.php文件中进行绑定

return [    'event_stop_publish'=>['app\\qikan\\behavior\\StopPublish']];
Copy after login

第三步、在绑定的行为位置进行行为定义

namespace app\index\behavior;class Test 
{    public function app_init(&$param)
    {        //$params 为引用传递    }    
    public function app_end(&$param)
    {

    }    
}
Copy after login

 以上就是本文的全部内容,希望对大家的学习有所帮助,更多相关内容请关注PHP中文网!

相关推荐:

WordPress 之在注册界面 实现 注册后密码直接显示在页面上

php压缩解压缩文件的代码

The above is the detailed content of About the use of thinkphp behavior. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
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

Hot Article Tags

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

11 Best PHP URL Shortener Scripts (Free and Premium) 11 Best PHP URL Shortener Scripts (Free and Premium) Mar 03, 2025 am 10:49 AM

11 Best PHP URL Shortener Scripts (Free and Premium)

Introduction to the Instagram API Introduction to the Instagram API Mar 02, 2025 am 09:32 AM

Introduction to the Instagram API

Working with Flash Session Data in Laravel Working with Flash Session Data in Laravel Mar 12, 2025 pm 05:08 PM

Working with Flash Session Data in Laravel

Build a React App With a Laravel Back End: Part 2, React Build a React App With a Laravel Back End: Part 2, React Mar 04, 2025 am 09:33 AM

Build a React App With a Laravel Back End: Part 2, React

Simplified HTTP Response Mocking in Laravel Tests Simplified HTTP Response Mocking in Laravel Tests Mar 12, 2025 pm 05:09 PM

Simplified HTTP Response Mocking in Laravel Tests

cURL in PHP: How to Use the PHP cURL Extension in REST APIs cURL in PHP: How to Use the PHP cURL Extension in REST APIs Mar 14, 2025 am 11:42 AM

cURL in PHP: How to Use the PHP cURL Extension in REST APIs

12 Best PHP Chat Scripts on CodeCanyon 12 Best PHP Chat Scripts on CodeCanyon Mar 13, 2025 pm 12:08 PM

12 Best PHP Chat Scripts on CodeCanyon

Notifications in Laravel Notifications in Laravel Mar 04, 2025 am 09:22 AM

Notifications in Laravel

See all articles