12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- function detect_extender_valuetype($value, $value_type = "") {
- if ($value_type != "" && ($value_type == 'integer' || $value_type == 'text')) {
- return $value_type;
- }
-
- if (is_int($value)) {
- return 'integer';
- }
-
- if (is_numeric($value)) {
- return 'text';
- }
- return 'text';
- }
|