Yii Learning (5) ---- some practical skills

Source: Internet
Author: User

Tips for implementing the Yii framework: the main operations involved in SQL statements are addition, deletion, modification, and query. we can define the scopes method in models to define the most basic data operation method: News. in the php model, [php] public function scopes () {return array (// obtain the common news method 'referend' => array ('condition' => "isrecommend = ". self: RECOMMEND,), 'getnew' => array ('select' => array ('id', 'title', 'coverimg '), 'order' => 'dateline desc',),);} After definition, if you want to use the method in it, you only need to use: [php] $ recommend_news = News :: model ()-> getNews ()-> recommend ()-> findAll (Array ('select' => array ('content'), 'condition' => "coverimg <>'' and coverimg is not null and type = ". news: TYPE_YLZX, 'limit '=> '4',); call. Concerning data update: [php] // Number of update clicks News: model ()-> updateCounters (array ('clicks' => 1), "id = ". $ id );

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.