yii\db\PdoValue - Yii2 类参考手册

Final Class yii\db\PdoValue

Inheritanceyii\db\PdoValue
Implementsyii\db\ExpressionInterface
Available since version2.0.14

Class PdoValue represents a $value that should be bound to PDO with exact $type.

For example, it will be useful when you need to bind binary data to BLOB column in DBMS:

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

To see possible types, check PDO::PARAM_* constants.

请参阅 https://secure.php.net/manual/en/pdostatement.bindparam.php.

Public Methods

隐藏继承的方法 Hide inherited methods

方法 Method简介 Description定义在 Defined By
__construct() PdoValue constructor. yii\db\PdoValue
getType() yii\db\PdoValue
getValue() yii\db\PdoValue

方法详情 Method Details

__construct() public method

PdoValue constructor.

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

public integer getType ( )
getValue() public method

public mixed getValue ( )