


Detailed explanation of how to use Behaviors in PHP's Yii framework, yiibehaviors
A class bound with behaviors, which looks like this:
// Step 1: 定义一个将绑定行为的类 class MyClass extends yii\base\Component { // 空的 } // Step 2: 定义一个行为类,他将绑定到MyClass上 class MyBehavior extends yii\base\Behavior { // 行为的一个属性 public $property1 = 'This is property in MyBehavior.'; // 行为的一个方法 public function method1() { return 'Method in MyBehavior is called.'; } } $myClass = new MyClass(); $myBehavior = new MyBehavior(); // Step 3: 将行为绑定到类上 $myClass->attachBehavior('myBehavior', $myBehavior); // Step 4: 访问行为中的属性和方法,就和访问类自身的属性和方法一样 echo $myClass->property1; echo $myClass->method1();
You don’t need to understand all the above codes. Although you may have guessed the meaning of these codes with your toes, here you only need to remember that the properties and methods in the behavior can be accessed by the bound class like itself. Direct access to properties and methods is OK. In the code, $myClass does not have a property1 method() member. These two are members of $myBehavior. However, after binding the behavior to the object through attachBehavior(), $myCalss seems to have mastered the magic of attracting stars and transforming energy, showing great wealth and turning other people's attributes and methods into its own.
In addition, from the above code, you also need to understand the general process of using the behavior:
- Derive your own class from yiibaseComponent in order to use the behavior;
- Derive your own behavior class from yiibaseBehavior, which defines the attributes and methods involved in the behavior;
- Bind Component and Behavior;
- Feel free to use the properties and methods defined in the behavior just like you would use the properties and methods of the Component itself.
To use a behavior, you must first attach it to the yiibaseComponent class or its subclasses as described previously. Once a behavior is attached to a component, you can use it directly.
After a behavior is attached to a component, you can access a behavior's public member variables or properties defined by getter and setter methods through the component:
// "prop1" 是定义在行为类的属性 echo $component->prop1; $component->prop1 = $value; 类似地也可以调用行为的公共方法: // foo() 是定义在行为类的公共方法 $component->foo();
As you can see, even though $component does not define prop1 and foo() , they are used as if they were defined by the component itself.
If two behaviors define the same property or method, and they are both attached to the same component, then the behavior attached first has priority when the property or method is accessed.
The named behavior when attaching a behavior to a component, you can use this name to access the behavior object, as shown below:
$behavior = $component->getBehavior('myBehavior');
You can also get all behaviors attached to this component:
$behaviors = $component->getBehaviors();
Remove Behavior
To remove a behavior, you can call the yiibaseComponent::detachBehavior() method using the name associated with the behavior:
$component->detachBehavior('myBehavior1');
You can also remove all behaviors:
$component->detachBehaviors();
Articles you may be interested in:
- Methods to remove behaviors bound to components in PHP's Yii framework
- Definition and binding of behaviors in PHP's Yii framework Explanation of certain methods
- In-depth explanation of properties (Properties) in PHP's Yii framework
- Example tutorials on database configuration and SQL operations in PHP's Yii framework
- In-depth analysis of PHP The event mechanism in the Yii framework
- Comprehensive interpretation of the logging function in the Yii framework of PHP
- Yii uses find findAll to find out the implementation method of the specified field
- Parse the yii database Addition, deletion, check and modification
- Yii PHP Framework practical introductory tutorial (detailed introduction)
- Detailed explanation of attribute injection and method injection of component behavior in PHP's Yii framework

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\ \;||\xc2\xa0)/","其他字符",$str)”语句。

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。


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

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

SublimeText3 Linux new version
SublimeText3 Linux latest version

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