xPDOQuery.andCondition
xPDOQuery::andCondition
Add an AND condition to the WHERE clause.
Syntax
API Docs: http://api.modx.com/revolution/2.2/db_core_xpdo_om_xpdoquery.class.html#\xPDOQuery::andCondition()
void andCondition ( $conditions, [ $binding = null], [ $group = 0])
Example
Grab all Boxes with width of 12 and height of 4.
$query = $xpdo->newQuery('Box'); $query->where(array('width' => 12)); $query->andCondition(array('height' => 4)); $boxes = $xpdo->getCollection('Box',$query);
Warning
The order you call the functions is important! The andCondition must come after the where method has been used.
The order you call the functions is important! The andCondition must come after the where method has been used.
See Also
Suggest an edit to this page on GitHub (Requires GitHub account. Opens a new window/tab).