Home
last modified time | relevance | path

Searched refs:digit (Results 76 – 100 of 118) sorted by relevance

12345

/PHP-8.1/ext/date/tests/
H A Dbug64157.phpt14 A two digit second could not be found
H A Dbug49585.phpt2 Bug #49585 (date_format buffer not long enough for >4 digit years)
H A Dgmdate_variation7.phpt27 echo "\n-- Testing gmdate() function with 2 digit representation year format --\n";
50 -- Testing gmdate() function with 2 digit representation year format --
H A Dbug54597.phpt2 Bug #54597 (incorrect years for DateTime objects created with 4-digit years)
/PHP-8.1/ext/json/tests/
H A Dpass001.phpt33 \"digit\": \"0123456789\",
116 "digit": "0123456789",
207 ["digit"]=>
345 ["digit"]=>
426 …,"alpha":"abcdefghijklmnopqrstuvwyz","ALPHA":"ABCDEFGHIJKLMNOPQRSTUVWYZ","digit":"0123456789","spe…
428 …,"alpha":"abcdefghijklmnopqrstuvwyz","ALPHA":"ABCDEFGHIJKLMNOPQRSTUVWYZ","digit":"0123456789","spe…
487 ["digit"]=>
625 ["digit"]=>
H A Dpass001.1.phpt39 \"digit\": \"0123456789\",
127 "digit": "0123456789",
224 ["digit"]=>
405 ["digit"]=>
527 …,"alpha":"abcdefghijklmnopqrstuvwyz","ALPHA":"ABCDEFGHIJKLMNOPQRSTUVWYZ","digit":"0123456789","spe…
529 …,"alpha":"abcdefghijklmnopqrstuvwyz","ALPHA":"ABCDEFGHIJKLMNOPQRSTUVWYZ","digit":"0123456789","spe…
590 ["digit"]=>
771 ["digit"]=>
H A Dpass001.1_64bit.phpt43 \"digit\": \"0123456789\",
131 "digit": "0123456789",
228 ["digit"]=>
409 ["digit"]=>
531 …,"alpha":"abcdefghijklmnopqrstuvwyz","ALPHA":"ABCDEFGHIJKLMNOPQRSTUVWYZ","digit":"0123456789","spe…
533 …,"alpha":"abcdefghijklmnopqrstuvwyz","ALPHA":"ABCDEFGHIJKLMNOPQRSTUVWYZ","digit":"0123456789","spe…
594 ["digit"]=>
775 ["digit"]=>
/PHP-8.1/ext/oci8/tests/
H A Dimp_res_1.phpt9 preg_match('/.*Release ([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]…
13 preg_match('/^[[:digit:]]+/', oci_client_version(), $matches);
H A Dbind_char_1.phpt9 preg_match('/.*Release ([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]…
H A Dbind_char_1_11gR1.phpt9 preg_match('/.*Release ([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]…
H A Ddrcp_connection_class.phpt7 preg_match('/^[[:digit:]]+/', oci_client_version(), $matches);
H A Dbind_char_3.phpt9 preg_match('/.*Release ([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]…
H A Dbind_char_4.phpt9 preg_match('/.*Release ([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]…
H A Dbind_char_3_11gR1.phpt9 preg_match('/.*Release ([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]…
H A Dbind_char_4_11gR1.phpt9 preg_match('/.*Release ([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]+)\.([[:digit:]]…
H A Dcalltimeout1.phpt13 preg_match('/^[[:digit:]]+/', oci_client_version(), $matches);
/PHP-8.1/ext/pcre/tests/
H A Dmatch_flags3.phpt44 Warning: preg_match(): Compilation failed: %s name must start with a non-digit at offset %d in %sma…
H A Dbug37911.phpt40 Warning: preg_replace_callback(): Compilation failed: %s name must start with a non-digit at offset…
H A Dpreg_match_all_edit_basic.phpt7 …PREG_OFFSET_CAPTURE|PREG_PATTERN_ORDER, -10)); //finds any digit that's not 4 10 di…
/PHP-8.1/ext/intl/uchar/
H A Duchar.stub.php35 public static function digit(int|string $codepoint, int $base = 10): int|false|null {} function in IntlChar
47 public static function forDigit(int $digit, int $base = 10): int {} argument
H A Duchar.c417 IC_METHOD(digit) { in IC_METHOD() argument
446 zend_long digit, radix = 10; in IC_METHOD() local
448 if (zend_parse_parameters(ZEND_NUM_ARGS(), "l|l", &digit, &radix) == FAILURE) { in IC_METHOD()
452 RETURN_LONG(u_forDigit(digit, radix)); in IC_METHOD()
/PHP-8.1/ext/filter/
H A Dlogical_filters.c96 int sign = 0, digit = 0; in php_filter_parse_int() local
129 digit = (*(str++) - '0'); in php_filter_parse_int()
130 if ( (!sign) && ctx_value <= (ZEND_LONG_MAX-digit)/10 ) { in php_filter_parse_int()
131 ctx_value = (ctx_value * 10) + digit; in php_filter_parse_int()
132 } else if ( sign && ctx_value >= (ZEND_LONG_MIN+digit)/10) { in php_filter_parse_int()
133 ctx_value = (ctx_value * 10) - digit; in php_filter_parse_int()
/PHP-8.1/ext/date/lib/
H A Dparse_date.re2203 case TIMELIB_FORMAT_DAY_TWO_DIGIT: /* two digit day, without leading zero */
2204 case TIMELIB_FORMAT_DAY_TWO_DIGIT_PADDED: /* two digit day, with leading zero */
2234 case TIMELIB_FORMAT_MONTH_TWO_DIGIT: /* two digit month, without leading zero */
2235 case TIMELIB_FORMAT_MONTH_TWO_DIGIT_PADDED: /* two digit month, with leading zero */
2254 case TIMELIB_FORMAT_YEAR_TWO_DIGIT: /* two digit year */
2267 case TIMELIB_FORMAT_YEAR_FOUR_DIGIT: /* four digit year */
2276 case TIMELIB_FORMAT_HOUR_TWO_DIGIT_12_MAX: /* two digit hour, without leading zero */
2314 case TIMELIB_FORMAT_MINUTE_TWO_DIGIT: /* two digit minute, with leading zero */
2330 case TIMELIB_FORMAT_SECOND_TWO_DIGIT: /* two digit second, with leading zero */
2346 case TIMELIB_FORMAT_MICROSECOND_SIX_DIGIT: /* up to six digit microsecond */
[all …]
/PHP-8.1/ext/pdo_oci/tests/
H A Dpdo_oci_attr_call_timeout.phpt16 preg_match('/^[[:digit:]]+/', $dbh->getAttribute(PDO::ATTR_CLIENT_VERSION), $matches);
/PHP-8.1/ext/ctype/tests/
H A Dctype_digit_variation3.phpt9 * which are considered valid decimal digit only strings

Completed in 43 milliseconds

12345