Skip to content

Instantly share code, notes, and snippets.

@jonasporto
Created August 12, 2014 17:23
Show Gist options
  • Select an option

  • Save jonasporto/ecce2f13325104d720b4 to your computer and use it in GitHub Desktop.

Select an option

Save jonasporto/ecce2f13325104d720b4 to your computer and use it in GitHub Desktop.
Clasule OR with AND
$conditions = array( 'conditions' => array(
'OR' => array( array( 'TaxasInscricao.data_inicio ' => null ,'TaxasInscricao.data_fim' => null ),
array( 'TaxasInscricao.data_inicio >= ' => $now , 'TaxasInscricao.data_fim <= ' => $now ),
array( 'TaxasInscricao.data_inicio ' => null , 'TaxasInscricao.data_fim <= ' => $now ),
array( 'TaxasInscricao.data_inicio ' => $now , 'TaxasInscricao.data_fim ' => null )
)));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment