0 关注者

最终类 yii\db\PdoValue

继承关系yii\db\PdoValue
实现接口yii\db\ExpressionInterface
可用版本2.0.14
源代码 https://github.com/yiisoft/yii2/blob/master/framework/db/PdoValue.php

类 PdoValue 表示一个 $value,它应该使用确切的 $type 绑定到 PDO。

例如,当您需要将二进制数据绑定到 DBMS 中的 BLOB 列时,它将非常有用。

[':name' => 'John', ':profile' => new PdoValue($profile, \PDO::PARAM_LOB)]`.

要查看可能的类型,请检查 PDO::PARAM_* 常量

另请参阅 https://php.ac.cn/manual/en/pdostatement.bindparam.php

公共方法

隐藏继承的方法

方法 描述 定义于
__construct() PdoValue 构造函数。 yii\db\PdoValue
getType() yii\db\PdoValue
getValue() yii\db\PdoValue

方法详情

隐藏继承的方法

__construct() 公共方法

PdoValue 构造函数。

public void __construct ( $value, $type )
$value
$type

                public function __construct($value, $type)
{
    $this->value = $value;
    $this->type = $type;
}

            
getType() 公共方法

public integer getType ( )

                public function getType()
{
    return $this->type;
}

            
getValue() 公共方法

public mixed getValue ( )

                public function getValue()
{
    return $this->value;
}