Skip to content

Instantly share code, notes, and snippets.

@possamai
Forked from anonymous/Controller.php
Last active September 2, 2015 14:00
Show Gist options
  • Save possamai/eff3c9447503e6d01f04 to your computer and use it in GitHub Desktop.
Save possamai/eff3c9447503e6d01f04 to your computer and use it in GitHub Desktop.
<?PHP
class MeuController extends AppController
{
public function busca($txt){
$resultados = $this->Model->find('all',array(
'fields'=>array('*',"(MATCH(Model.title,Model.content,Model.campo_adicional) AGAINST ('{$txt}')) as relevancia"),
'conditions'=>array('relevancia > 0'),
'order'=>'relevancia DESC',
));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment