Server IP : 185.86.78.101 / Your IP : 216.73.216.124 Web Server : Apache System : Linux 675867-vds-valikoshka1996.gmhost.pp.ua 5.4.0-150-generic #167-Ubuntu SMP Mon May 15 17:35:05 UTC 2023 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /www/wwwroot/mifepriston.org/vendor/yiisoft/yii2/db/ |
Upload File : |
<?php /** * @link https://www.yiiframework.com/ * @copyright Copyright (c) 2008 Yii Software LLC * @license https://www.yiiframework.com/license/ */ namespace yii\db; /** * Expression represents a DB expression that does not need escaping or quoting. * * When an Expression object is embedded within a SQL statement or fragment, * it will be replaced with the [[expression]] property value without any * DB escaping or quoting. For example, * * ```php * $expression = new Expression('NOW()'); * $now = (new \yii\db\Query)->select($expression)->scalar(); // SELECT NOW(); * echo $now; // prints the current date * ``` * * Expression objects are mainly created for passing raw SQL expressions to methods of * [[Query]], [[ActiveQuery]], and related classes. * * An expression can also be bound with parameters specified via [[params]]. * * @author Qiang Xue <qiang.xue@gmail.com> * @since 2.0 */ class Expression extends \yii\base\BaseObject implements ExpressionInterface { /** * @var string the DB expression */ public $expression; /** * @var array list of parameters that should be bound for this expression. * The keys are placeholders appearing in [[expression]] and the values * are the corresponding parameter values. */ public $params = []; /** * Constructor. * @param string $expression the DB expression * @param array $params parameters * @param array $config name-value pairs that will be used to initialize the object properties */ public function __construct($expression, $params = [], $config = []) { $this->expression = $expression; $this->params = $params; parent::__construct($config); } /** * String magic method. * @return string the DB expression. */ public function __toString() { return $this->expression; } }