MODX Cloud

The Most Productive MODX Learning Playground Ever

Claim Free Lab Account

xPDOQuery.andCondition

Skip to end of metadata
Go to start of metadata


xPDOQuery::andCondition

Add an AND condition to the WHERE clause.

Syntax

API Docs: http://api.modxcms.com/xpdo/om/xPDOQuery.html#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);

See Also

Enter labels to add to this page:
Please wait 
Looking for a label? Just start typing.