setIdentifier($identifier); } if ($valueSet) { $this->setValueSet($valueSet); } } /** * Set identifier for comparison * * @param string|array $identifier * @return In */ public function setIdentifier($identifier) { $this->identifier = $identifier; return $this; } /** * Get identifier of comparison * * @return null|string|array */ public function getIdentifier() { return $this->identifier; } /** * Set set of values for IN comparison * * @param array|Select $valueSet * @throws Exception\InvalidArgumentException * @return In */ public function setValueSet($valueSet) { if (!is_array($valueSet) && !$valueSet instanceof Select) { throw new Exception\InvalidArgumentException( '$valueSet must be either an array or a Zend\Db\Sql\Select object, ' . gettype($valueSet) . ' given' ); } $this->valueSet = $valueSet; return $this; } /** * Gets set of values in IN comparision * * @return array|Select */ public function getValueSet() { return $this->valueSet; } /** * Return array of parts for where statement * * @return array */ public function getExpressionData() { $identifier = $this->getIdentifier(); $values = $this->getValueSet(); $replacements = array(); if (is_array($identifier)) { $identifierSpecFragment = '(' . implode(', ', array_fill(0, count($identifier), '%s')) . ')'; $types = array_fill(0, count($identifier), self::TYPE_IDENTIFIER); $replacements = $identifier; } else { $identifierSpecFragment = '%s'; $replacements[] = $identifier; $types = array(self::TYPE_IDENTIFIER); } if ($values instanceof Select) { $specification = vsprintf( $this->specification, array($identifierSpecFragment, '%s') ); $replacements[] = $values; $types[] = self::TYPE_VALUE; } else { $specification = vsprintf( $this->specification, array($identifierSpecFragment, '(' . implode(', ', array_fill(0, count($values), '%s')) . ')') ); $replacements = array_merge($replacements, $values); $types = array_merge($types, array_fill(0, count($values), self::TYPE_VALUE)); } return array(array( $specification, $replacements, $types, )); } }