How to Understand model ()

Source: Internet
Author: User
How to Understand model? YII has the following code: $ post = Post: model ()-& gt; findByAttributes ($ attributes, $ condition, $ params); & nbsp; & nbsp; Post: model ()-model () how to understand?
YII has the following code: $ post = Post: model ()-> findByAttributes ($ attributes, $ condition, $ params );
Post: model ()-> find ()-> attributes.
How can we understand the model () change?
------ Solution --------------------
The model overwrites the parent class method and instantiates the object of this class.
Your example, that is, the model () instance has the Post class instance.
The findByAttributes method is also in the parent class.


// This is the method in the ar class.
Public static function model ($ className =__ CLASS __)
{
If (isset (self ::$ _ models [$ className])
Return self: $ _ models [$ className];
Else
{
$ Model = self ::$ _ models [$ className] = new $ className (null );
$ Model-> _ md = new CActiveRecordMetaData ($ model );
$ Model-> attachBehaviors ($ model-> behaviors ());
Return $ model;
}
}


------ Solution --------------------
Post: model () returns a specified object
------ Solution --------------------
The model method returns an instance of the POST class.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.