Home Backend Development PHP Tutorial Yii source code interpretation - attributes

Yii source code interpretation - attributes

Jul 29, 2016 am 08:58 AM
component object public title yii

Yii Basics

Attributes property

Attributes are used to represent the status of a class. From the perspective of access, there is no difference between attributes and member variables. However, member variables are a concept in terms of the structural composition of the class, while attributes are a concept in terms of the functional logic of the class

Q: What is the difference between attributes and member variables?

  • Member variables are an "internal" concept that reflect the structure of the class. Attribute is an "external" concept, reflecting the logical meaning of the class.

  • Member variables do not have read and write permission controls, while properties can be specified as read-only or write-only, or both read and write.

  • Member variables do not undergo any post-processing for reading and do not undergo any pre-processing for writing, while attributes do.

  • The public member variable can be regarded as a readable and writable property without any preprocessing or postprocessing. Since private member variables are not visible from the outside and are inconsistent with the "external" characteristics of attributes, they cannot be regarded as attributes.

  • Although in most cases, attributes are represented by one or more member variables, there is no necessary correspondence between attributes and member variables. For example, the output attribute of the NAND gate does not have a so-called $output member. The variables correspond to it.

provides support for attributes by yiibaseObject

implementation of attributes

<code>class foo extends yii\base\object{
    private $_title;
    
    public function setTitle($title){
        $this->_title = trim($title);
    }
    
    public function getTitle(){
        return $this->_title;
    }
}</code>
Copy after login

attributes can achieve better encapsulation of classes, while component entries and unified management of member variables.

However, __get(), __set() traverses all member variables and is called only when no matching member variable is found. Its efficiency is inherently lower than using member variables. In some simple situations where data structures, data collections, etc. are represented, and read-write control is not required, you can consider using member variables as attributes, which can improve efficiency.

The timing of automatically calling __get() __set() only occurs when accessing non-existing member variables. Therefore, if the member variable public $title is defined, then even if getTitle() setTitle() is defined, they will not be called. Because when $post->title, it will point directly to the public $title.

PHP is not case-sensitive for class methods, that is, it is not case-sensitive, and it is also case-insensitive for attribute names.

__get() __set() are all public, static methods are not easy to use.

Component

Yii claims to be a component-based framework.

yiibaseComponent inherits from yiibaseObject. Component overloads the property methods in Object and also adds events and behaviors.

Since overloading adds events and behaviors, the performance of Component is slightly worse than that of Object.

Object configuration

Yii’s object configuration method is unified. The configuration of all objects is configured through __construct() in Object. The essence of configuration lies in Yii::configure(), which constructs properties by configuring arrays.

Q: What if the configuration is a multi-dimensional array?

Yii implements the specific processing of this array in yiidiServiceLocator: setComponents.

Summary

Through yiibaseObject::__construct(), we can see that all objects, including the loading of Component properties, have 4 stages (the first three stages are integrated in one go).

  1. Pre-initialization: The default definition of Property

  2. Yii::configure() to load the configuration array, override the Property

  3. and then initialize: init() execution

  4. class method call stage.

Reference

  1. http://www.digpage.com/

The above introduces Yii source code interpretation-attributes, including aspects of content. I hope it will be helpful to friends who are interested in PHP tutorials.

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 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

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

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)

What is the difference between the developer version and the public version of iOS? What is the difference between the developer version and the public version of iOS? Mar 01, 2024 pm 12:55 PM

Every year before Apple releases a new major version of iOS and macOS, users can download the beta version several months in advance and experience it first. Since the software is used by both the public and developers, Apple has launched developer and public versions, which are public beta versions of the developer beta version, for both. What is the difference between the developer version and the public version of iOS? Literally speaking, the developer version is a developer test version, and the public version is a public test version. The developer version and the public version target different audiences. The developer version is used by Apple for testing by developers. You need an Apple developer account to download and upgrade it.

How vue3 uses defineAsyncComponent and component tags to implement dynamic rendering components How vue3 uses defineAsyncComponent and component tags to implement dynamic rendering components May 12, 2023 pm 05:55 PM

1. Basic dynamic introduction of components: Simple dynamic introduction means that the front end knows which components to introduce, and introduces multiple components into the parent component, but does not render it. After certain conditions are met, it will be rendered at a certain location. specified component. import{reactive,ref,shallowReactive,onActivated,defineAsyncComponent,}from'vue';constcustomModal=defineAsyncComponent(()=>import('./modal/CustomM

Interviewer: The difference between @Configuration and @Component Interviewer: The difference between @Configuration and @Component Aug 15, 2023 pm 04:29 PM

Calling the @Bean annotated method in the @Configuration class returns the same example; calling the @Bean annotated method in the @Component class returns a new instance.

what does title mean what does title mean Aug 04, 2023 am 11:18 AM

Title is the meaning that defines the title of the web page. It is located within the tag and is the text displayed in the title bar of the browser. Title is very important for the search engine optimization and user experience of the web page. When writing HTML web pages, you should pay attention to using relevant keywords and attractive descriptions to define the title element to attract more users to click and browse.

Tips on using mixin, extend, component and other APIs to implement component customization in Vue Tips on using mixin, extend, component and other APIs to implement component customization in Vue Jun 25, 2023 pm 03:28 PM

Vue.js is a popular front-end framework that provides many APIs for component customization. This article will introduce the mixin, extend, component and other APIs in Vue to help you master the skills of component customization. Mixin Mixin is a way to reuse component code in Vue. It allows us to reuse already written code into different components, thereby reducing the need to write duplicate code. For example, we can use mixins to help us combine multiple groups

How to use PHP framework Yii to develop a highly available cloud backup system How to use PHP framework Yii to develop a highly available cloud backup system Jun 27, 2023 am 09:04 AM

With the continuous development of cloud computing technology, data backup has become something that every enterprise must do. In this context, it is particularly important to develop a highly available cloud backup system. The PHP framework Yii is a powerful framework that can help developers quickly build high-performance web applications. The following will introduce how to use the Yii framework to develop a highly available cloud backup system. Designing the database model In the Yii framework, the database model is a very important part. Because the data backup system requires a lot of tables and relationships

Yii2 vs Phalcon: Which framework is better for developing graphics rendering applications? Yii2 vs Phalcon: Which framework is better for developing graphics rendering applications? Jun 19, 2023 am 08:09 AM

In the current information age, big data, artificial intelligence, cloud computing and other technologies have become the focus of major enterprises. Among these technologies, graphics card rendering technology, as a high-performance graphics processing technology, has received more and more attention. Graphics card rendering technology is widely used in game development, film and television special effects, engineering modeling and other fields. For developers, choosing a framework that suits their projects is a very important decision. Among current languages, PHP is a very dynamic language. Some excellent PHP frameworks such as Yii2, Ph

Data query in Yii framework: access data efficiently Data query in Yii framework: access data efficiently Jun 21, 2023 am 11:22 AM

The Yii framework is an open source PHP Web application framework that provides numerous tools and components to simplify the process of Web application development, of which data query is one of the important components. In the Yii framework, we can use SQL-like syntax to access the database to query and manipulate data efficiently. The query builder of the Yii framework mainly includes the following types: ActiveRecord query, QueryBuilder query, command query and original SQL query

See all articles