YII2 implementation of simultaneous search for multiple fields _php instance

Source: Internet
Author: User
Tags smarty template yii

The example in this article describes how YII2 implements searching multiple fields at the same time. Share to everyone for your reference, specific as follows:

The search field in Yii2 is a andfilterwhere This method that can be used to search for a paragraph.

If you are searching for more than one field, such as searching for the title of the article and the content of the article to include keywords to search for, because their relationship is or, so you need to use the orfilterwhere method

Here's the whole code.

Public Function Actionindex ()
{
  $key =yii:: $app->request->post ("key");
  $query = Post::find ()->joinwith (' Cate ');
  $post = $query->orderby ([' Post.id ' => Sort_desc])->asarray ()->where ([' Post.status ' => 1]);
  if ($key) {
    $post->andfilterwhere ([' Like ', ' post.title ', $key])
      ->orfilterwhere ("Like", ' Post.content ', $key]);
  }
  $pages = new Pagination ([
    ' TotalCount ' => $post->count (),
    ' defaultpagesize ' =>
  ]);
  $model = $post->offset ($pages->offset)->limit ($pages->limit)->all ();
  return $this->render (' index ', [
    ' model ' => $model,
    ' pages ' => $pages,
  ]);
}

You can see the SQL statement as follows:

Copy Code code as follows:
Select COUNT (*) from ' post ' left join ' category ' on ' post '. ' cate_id ' = ' category '. ' ID ' where ((' Post '. ' Status ' =1) and (' Post '. ' title ' Like '%key% ')] or (' post '. ' Content ' like '%key% ') Order by ' post '. ' ID ' desc
Select ' Post '. * ' post ' left join ' category ' on ' post '. ' cate_id ' = ' category '. ' ID ' where ((' Post '. ' Status ' =1) and (' Post '. ' title ' Like '%key% ')] or (' post '. ' Content ' like '%key% ') Order by ' post '. ' ID ' desc limit 10

For more information on YII-related content, readers who are interested in this site can view the topics: Introduction to YII Framework and summary of common skills, "Summary of PHP Excellent development framework", "Smarty Template Introductory Course", "Introduction to PHP object-oriented programming", "PHP string" Summary of Usage , "Php+mysql Database operation Introduction Tutorial" and "PHP common database Operation Skills Summary"

I hope this article will help you with the PHP program design based on the YII framework.

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.