最终类 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 |
方法详情
PdoValue 构造函数。
public void __construct ( $value, $type ) | ||
$value | ||
$type |
public function __construct($value, $type)
{
$this->value = $value;
$this->type = $type;
}
注册 或 登录 以发表评论。