| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199 | <?php/** * @link http://www.yiiframework.com/ * @copyright Copyright (c) 2008 Yii Software LLC * @license http://www.yiiframework.com/license/ */namespace yii\db;use Traversable;use yii\base\InvalidConfigException;/** * Class ArrayExpression represents an array SQL expression. * * Expressions of this type can be used in conditions as well: * * ```php * $query->andWhere(['@>', 'items', new ArrayExpression([1, 2, 3], 'integer')]) * ``` * * which, depending on DBMS, will result in a well-prepared condition. For example, in * PostgreSQL it will be compiled to `WHERE "items" @> ARRAY[1, 2, 3]::integer[]`. * * @author Dmytro Naumenko <d.naumenko.a@gmail.com> * @since 2.0.14 */class ArrayExpression implements ExpressionInterface, \ArrayAccess, \Countable, \IteratorAggregate{    /**     * @var null|string the type of the array elements. Defaults to `null` which means the type is     * not explicitly specified.     *     * Note that in case when type is not specified explicitly and DBMS can not guess it from the context,     * SQL error will be raised.     */    private $type;    /**     * @var array|QueryInterface the array's content.     * In can be represented as an array of values or a [[Query]] that returns these values.     */    private $value;    /**     * @var int the number of indices needed to select an element     */    private $dimension;    /**     * ArrayExpression constructor.     *     * @param array|QueryInterface|mixed $value the array content. Either represented as an array of values or a Query that     * returns these values. A single value will be considered as an array containing one element.     * @param string|null $type the type of the array elements. Defaults to `null` which means the type is     * not explicitly specified. In case when type is not specified explicitly and DBMS can not guess it from the context,     * SQL error will be raised.     * @param int $dimension the number of indices needed to select an element     */    public function __construct($value, $type = null, $dimension = 1)    {        if ($value instanceof self) {            $value = $value->getValue();        }        $this->value = $value;        $this->type = $type;        $this->dimension = $dimension;    }    /**     * @return null|string     * @see type     */    public function getType()    {        return $this->type;    }    /**     * @return array|mixed|QueryInterface     * @see value     */    public function getValue()    {        return $this->value;    }    /**     * @return int the number of indices needed to select an element     * @see dimensions     */    public function getDimension()    {        return $this->dimension;    }    /**     * Whether a offset exists     *     * @link https://secure.php.net/manual/en/arrayaccess.offsetexists.php     * @param mixed $offset <p>     * An offset to check for.     * </p>     * @return bool true on success or false on failure.     * </p>     * <p>     * The return value will be casted to boolean if non-boolean was returned.     * @since 2.0.14     */    public function offsetExists($offset)    {        return isset($this->value[$offset]);    }    /**     * Offset to retrieve     *     * @link https://secure.php.net/manual/en/arrayaccess.offsetget.php     * @param mixed $offset <p>     * The offset to retrieve.     * </p>     * @return mixed Can return all value types.     * @since 2.0.14     */    public function offsetGet($offset)    {        return $this->value[$offset];    }    /**     * Offset to set     *     * @link https://secure.php.net/manual/en/arrayaccess.offsetset.php     * @param mixed $offset <p>     * The offset to assign the value to.     * </p>     * @param mixed $value <p>     * The value to set.     * </p>     * @return void     * @since 2.0.14     */    public function offsetSet($offset, $value)    {        $this->value[$offset] = $value;    }    /**     * Offset to unset     *     * @link https://secure.php.net/manual/en/arrayaccess.offsetunset.php     * @param mixed $offset <p>     * The offset to unset.     * </p>     * @return void     * @since 2.0.14     */    public function offsetUnset($offset)    {        unset($this->value[$offset]);    }    /**     * Count elements of an object     *     * @link https://secure.php.net/manual/en/countable.count.php     * @return int The custom count as an integer.     * </p>     * <p>     * The return value is cast to an integer.     * @since 2.0.14     */    public function count()    {        return count($this->value);    }    /**     * Retrieve an external iterator     *     * @link https://secure.php.net/manual/en/iteratoraggregate.getiterator.php     * @return Traversable An instance of an object implementing <b>Iterator</b> or     * <b>Traversable</b>     * @since 2.0.14.1     * @throws InvalidConfigException when ArrayExpression contains QueryInterface object     */    public function getIterator()    {        $value = $this->getValue();        if ($value instanceof QueryInterface) {            throw new InvalidConfigException('The ArrayExpression class can not be iterated when the value is a QueryInterface object');        }        if ($value === null) {            $value = [];        }        return new \ArrayIterator($value);    }}
 |