Searched refs:is_numeric (Results 1 – 14 of 14) sorted by relevance
/PHP-5.6/ext/standard/tests/general_functions/ |
H A D | is_numeric.phpt | 2 Test is_numeric() function 5 /* Prototype: bool is_numeric ( mixed $var ); 9 echo "*** Testing is_numeric() with valid numeric values ***\n"; 92 /* loop to check that is_numeric() recognizes different 97 var_dump( is_numeric($num) ); 100 echo "\n*** Testing is_numeric() on non numeric types ***\n"; 146 var_dump( is_numeric($type) ); 151 var_dump( is_numeric() ); 154 var_dump( is_numeric("10", "20") ); 164 *** Testing is_numeric() with valid numeric values *** [all …]
|
/PHP-5.6/ext/standard/tests/array/ |
H A D | array_filter_variation10.phpt | 43 var_dump(array_filter($mixed, 'is_numeric', ARRAY_FILTER_USE_KEY)); 45 var_dump(array_filter($mixed, 'is_numeric', 0)); 47 var_dump(array_filter($mixed, 'is_numeric', ARRAY_FILTER_USE_BOTH)); 94 Warning: is_numeric() expects exactly 1 parameter, 2 given in %s on line 44 96 Warning: is_numeric() expects exactly 1 parameter, 2 given in %s on line 44 98 Warning: is_numeric() expects exactly 1 parameter, 2 given in %s on line 44 100 Warning: is_numeric() expects exactly 1 parameter, 2 given in %s on line 44
|
/PHP-5.6/ext/intl/collator/ |
H A D | collator_convert.c | 376 int is_numeric = 0; in collator_convert_string_to_number_if_possible() local 385 …if( ( is_numeric = collator_is_numeric( (UChar*) Z_STRVAL_P(str), UCHARS( Z_STRLEN_P(str) ), &lval… in collator_convert_string_to_number_if_possible() 389 if( is_numeric == IS_LONG ) in collator_convert_string_to_number_if_possible() 391 if( is_numeric == IS_DOUBLE ) in collator_convert_string_to_number_if_possible() 394 Z_TYPE_P(num) = is_numeric; in collator_convert_string_to_number_if_possible()
|
/PHP-5.6/ext/standard/ |
H A D | php_type.h | 35 PHP_FUNCTION(is_numeric);
|
H A D | type.c | 314 PHP_FUNCTION(is_numeric) in PHP_FUNCTION() argument
|
H A D | basic_functions.c | 3050 PHP_FE(is_numeric, arginfo_is_numeric)
|
/PHP-5.6/ext/soap/interop/ |
H A D | test.utility.php | 64 if (is_numeric($e1) && is_numeric($e2)) {
|
/PHP-5.6/ext/intl/resourcebundle/ |
H A D | resourcebundle_class.c | 173 zend_bool is_numeric = 0; in resourcebundle_array_fetch() local 181 is_numeric = 1; in resourcebundle_array_fetch() 195 if (is_numeric) { in resourcebundle_array_fetch() 208 if (is_numeric) { in resourcebundle_array_fetch()
|
/PHP-5.6/ext/spl/internal/ |
H A D | spldoublylinkedlist.inc | 201 if (!is_numeric($offset)) { 222 if (!is_numeric($offset) || !array_key_exists($realOffset, $this->_llist)) { 248 if (!is_numeric($offset) || !array_key_exists($realOffset, $this->_llist)) { 269 if (!is_numeric($offset) || !array_key_exists($realOffset, $this->_llist)) {
|
/PHP-5.6/ext/snmp/tests/ |
H A D | snmp_getvalue.phpt | 50 var_dump(is_numeric($z->value));
|
/PHP-5.6/ext/standard/html_tables/ |
H A D | html_table_gen.php | 262 if (is_numeric($v))
|
/PHP-5.6/ext/mysqlnd/ |
H A D | mysqlnd_result_meta.c | 182 if ((meta->zend_hash_keys[i].is_numeric = in MYSQLND_METHOD()
|
H A D | mysqlnd_result.c | 950 if (meta->zend_hash_keys[i].is_numeric == FALSE) { in MYSQLND_METHOD() 1205 if (meta->zend_hash_keys[i].is_numeric == FALSE) { in MYSQLND_METHOD() 1306 if (meta->zend_hash_keys[i].is_numeric == FALSE) { in MYSQLND_METHOD()
|
H A D | mysqlnd_structs.h | 996 zend_bool is_numeric; member
|
Completed in 58 milliseconds