本文整理汇总了PHP中Column::getPhpNative方法的典型用法代码示例。如果您正苦于以下问题:PHP Column::getPhpNative方法的具体用法?PHP Column::getPhpNative怎么用?PHP Column::getPhpNative使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Column
的用法示例。
在下文中一共展示了Column::getPhpNative方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: addDefaultMutator
/**
* Adds setter method for "normal" columns.
* @param string &$script The script will be modified in this method.
* @param Column $col The current column.
* @see parent::addColumnMutators()
*/
protected function addDefaultMutator(&$script, Column $col)
{
$clo = strtolower($col->getName());
// FIXME: refactor this
$defaultValue = null;
if (($val = $col->getPhpDefaultValue()) !== null) {
settype($val, $col->getPhpNative());
$defaultValue = var_export($val, true);
}
$this->addMutatorOpen($script, $col);
// Perform some smart checking here to handle possible type discrepancies
// between the passed-in value and the value from the DB
if ($col->getPhpNative() === "int") {
$script .= "\n\t\t// Since the native PHP type for this column is integer,\n\t\t// we will cast the input value to an int (if it is not).\n\t\tif (\$v !== null && !is_int(\$v) && is_numeric(\$v)) {\n\t\t\t\$v = (int) \$v;\n\t\t}\n";
} elseif ($col->getPhpNative() === "string") {
$script .= "\n\t\t// Since the native PHP type for this column is string,\n\t\t// we will cast the input to a string (if it is not).\n\t\tif (\$v !== null && !is_string(\$v)) {\n\t\t\t\$v = (string) \$v;\n\t\t}\n";
}
$script .= "\n\t\tif (\$this->{$clo} !== \$v";
if ($defaultValue !== null) {
$script .= " || \$v === {$defaultValue}";
}
$script .= ") {\n\t\t\t\$this->{$clo} = \$v;\n\t\t\t\$this->modifiedColumns[] = " . $this->getColumnConstant($col) . ";\n\t\t}\n";
$this->addMutatorClose($script, $col);
}
示例2: addDefaultMutator
/**
* Adds setter method for "normal" columns.
* @param string &$script The script will be modified in this method.
* @param Column $col The current column.
* @see parent::addColumnMutators()
*/
protected function addDefaultMutator(&$script, Column $col)
{
$clo = strtolower($col->getName());
// FIXME: refactor this
$defaultValue = null;
if (($val = $col->getPhpDefaultValue()) !== null) {
settype($val, $col->getPhpNative());
$defaultValue = var_export($val, true);
}
$this->addMutatorOpen($script, $col);
$script .= "\n\t\tif (\$this->{$clo} !== \$v";
if ($defaultValue !== null) {
$script .= " || \$v === {$defaultValue}";
}
$script .= ") {\n\t\t\t\$this->{$clo} = \$v;\n\t\t\t\$this->modifiedColumns[] = " . $this->getColumnConstant($col) . ";\n\t\t}\n";
$this->addMutatorClose($script, $col);
}