func_get_args

Supported Versions: PHP 4, PHP 5, PHP 7, PHP 8
Returns an array comprising a function's argument list
<?php func_get_args(): array
<?php         $type = $this->convertParamType($type);



        try {

            return $this->stmt->bindParam($param, $variable, $type, ...array_slice(func_get_args(), 3));

        } catch (PDOException $exception) {

            throw Exception::new($exception);

        }
<?php             );

        }



        $this->sql = array_merge($this->sql, is_array($sql) ? $sql : func_get_args());



        return $this;

    }
<?php     public function addSql($sql)

    {

        $this->sql = array_merge($this->sql, is_array($sql) ? $sql : func_get_args());



        return $this;

    }
<?php     public function addSql($sql)

    {

        $this->sql = array_merge($this->sql, is_array($sql) ? $sql : func_get_args());



        return $this;

    }
<?php     public function addSql($sql)

    {

        $this->sql = array_merge($this->sql, is_array($sql) ? $sql : func_get_args());



        return $this;

    }
<?php     public function addSql($sql)

    {

        $this->sql = array_merge($this->sql, is_array($sql) ? $sql : func_get_args());



        return $this;

    }
<?php     public function addSql($sql)

    {

        $this->sql = array_merge($this->sql, is_array($sql) ? $sql : func_get_args());



        return $this;

    }
<?php     public function addSql($sql)

    {

        $this->sql = array_merge($this->sql, is_array($sql) ? $sql : func_get_args());



        return $this;

    }
<?php     public function getConcatExpression()

    {

        return implode(' || ', func_get_args());

    }
<?php     public function getConcatExpression()

    {

        return sprintf('CONCAT(%s)', implode(', ', func_get_args()));

    }
<?php     public function getConcatExpression()

    {

        $args = func_get_args();



        return '(' . implode(' + ', $args) . ')';

    }
<?php             'ExpressionBuilder::andX() is deprecated, use ExpressionBuilder::and() instead.'

        );



        return new CompositeExpression(CompositeExpression::TYPE_AND, func_get_args());

    }
<?php             'ExpressionBuilder::orX() is deprecated, use ExpressionBuilder::or() instead.'

        );



        return new CompositeExpression(CompositeExpression::TYPE_OR, func_get_args());

    }
<?php             );

        }



        $selects = is_array($select) ? $select : func_get_args();



        return $this->add('select', $selects);

    }
<?php             );

        }



        $selects = is_array($select) ? $select : func_get_args();



        return $this->add('select', $selects, true);

    }