[api.core.checker] now for 'varchar()' type, pass numeric -> string before checking 'strlen()' (because of json_decode)
This commit is contained in:
parent
a0d2ca65f9
commit
1aab7b61bd
|
@ -44,6 +44,10 @@
|
|||
// On recupere le sous-type si défini
|
||||
$flags = isset($match[3]) ? explode(',', substr($match[3], 1)) : null;
|
||||
|
||||
// Si numeric -> to String
|
||||
if( is_numeric($value) )
|
||||
$value = (string) $value;
|
||||
|
||||
// On effectue la verification de taille
|
||||
$lenCheck = $checker && is_string($value) && strlen($value) <= $max && strlen($value) >= $min;
|
||||
|
||||
|
|
Loading…
Reference in New Issue