本文整理汇总了PHP中format::read_bcnumeric方法的典型用法代码示例。如果您正苦于以下问题:PHP format::read_bcnumeric方法的具体用法?PHP format::read_bcnumeric怎么用?PHP format::read_bcnumeric使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类format
的用法示例。
在下文中一共展示了format::read_bcnumeric方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: validate_data_types_single_value
/**
* Validate data type for single value
*
* @param string $k
* @param array $v
* @param mixed $in_value
* @param string $error_field
*/
public final function validate_data_types_single_value($k, $v, $in_value, $error_field = null)
{
// we set error field as main key
if (empty($error_field)) {
$error_field = $k;
}
// perform validation
$data = object_table_columns::process_single_column_type($k, $v['options'], $in_value, ['process_datetime' => true]);
if (array_key_exists($k, $data)) {
// validations
$error = false;
$value = $in_value;
// perform validation
if ($v['options']['type'] == 'boolean') {
if (!empty($value) && $value . '' != $data[$k] . '') {
$this->error('danger', 'Wrong boolean value!', $error_field);
$error = true;
}
} else {
if (in_array($v['options']['type'], ['date', 'time', 'datetime', 'timestamp'])) {
// dates first
if (!empty($value) && empty($data[$k . '_strtotime_value'])) {
$this->error('danger', 'Invalid date, time or datetime!', $error_field);
$error = true;
}
} else {
if ($v['options']['php_type'] == 'integer') {
if ($value . '' !== '' && !format::read_intval($value, ['valid_check' => 1])) {
$this->error('danger', 'Wrong integer value!', $error_field);
$error = true;
}
// null processing
if (!$error) {
if (empty($data[$k]) && !empty($v['options']['null'])) {
$data[$k] = null;
}
}
} else {
if ($v['options']['php_type'] == 'bcnumeric') {
// accounting numbers
if ($value . '' !== '' && !format::read_bcnumeric($value, ['valid_check' => 1])) {
$this->error('danger', 'Wrong numeric value!', $error_field);
$error = true;
}
// precision & scale validations
if (!$error) {
// validate scale
$digits = explode('.', $data[$k] . '');
if (!empty($v['options']['scale'])) {
if (!empty($digits[1]) && strlen($digits[1]) > $v['options']['scale']) {
$this->error('danger', 'Only [digits] fraction digits allowed!', $error_field, ['replace' => ['[digits]' => i18n(null, $v['options']['scale'])]]);
$error = true;
}
}
// validate precision
if (!empty($v['options']['precision'])) {
$precision = $v['options']['precision'] - $v['options']['scale'] ?? 0;
if (strlen($digits[0]) > $precision) {
$this->error('danger', 'Only [digits] digits allowed!', $error_field, ['replace' => ['[digits]' => i18n(null, $precision)]]);
$error = true;
}
}
}
} else {
if ($v['options']['php_type'] == 'float') {
// regular floats
if ($value . '' !== '' && !format::read_floatval($value, ['valid_check' => 1])) {
$this->error('danger', 'Wrong float value!', $error_field);
$error = true;
}
// null processing
if (!$error) {
if (empty($data[$k]) && !empty($v['options']['null'])) {
$data[$k] = null;
}
}
} else {
if ($v['options']['php_type'] == 'string') {
// we need to convert empty string to null
if ($data[$k] . '' === '' && !empty($v['options']['null'])) {
$data[$k] = null;
}
// validate string length
if ($data[$k] . '' !== '') {
// validate length
if (!empty($v['options']['type']) && $v['options']['type'] == 'char' && strlen($data[$k]) != $v['options']['length']) {
// char
$this->error('danger', 'The length must be [length] characters!', $error_field, ['replace' => ['[length]' => i18n(null, $v['options']['length'])]]);
$error = true;
} else {
if (!empty($v['options']['length']) && strlen($data[$k]) > $v['options']['length']) {
// varchar
//.........这里部分代码省略.........