mirror of
https://github.com/php/php-src.git
synced 2025-01-11 05:24:49 +08:00
use pcre for testing reflection
This commit is contained in:
parent
ad0a7679ac
commit
cfcfbb24da
@ -7,14 +7,16 @@ if (!extension_loaded("reflection")) {
|
||||
die("skip");
|
||||
}
|
||||
?>
|
||||
--INI--
|
||||
date.timezone=
|
||||
--FILE--
|
||||
<?php
|
||||
|
||||
$php = getenv('TEST_PHP_EXECUTABLE');
|
||||
|
||||
var_dump(`"$php" -n --re unknown`);
|
||||
var_dump(`"$php" -n --re ""`);
|
||||
var_dump(`"$php" -n --re date`);
|
||||
var_dump(`$php -n --re unknown`);
|
||||
var_dump(`$php -n --re ""`);
|
||||
var_dump(`$php -n --re pcre`);
|
||||
|
||||
echo "Done\n";
|
||||
?>
|
||||
@ -23,339 +25,78 @@ string(44) "Exception: Extension unknown does not exist
|
||||
"
|
||||
string(37) "Exception: Extension does not exist
|
||||
"
|
||||
string(%d) "Extension [ <persistent> extension #%d date version %s ] {
|
||||
|
||||
- Dependencies {
|
||||
Dependency [ session (Optional) ]
|
||||
}
|
||||
string(%d) "Extension [ <persistent> extension #%d pcre version <no_version> ] {
|
||||
|
||||
- INI {
|
||||
Entry [ date.timezone <ALL> ]
|
||||
Current = ''
|
||||
Entry [ pcre.backtrack_limit <ALL> ]
|
||||
Current = '%d'
|
||||
}
|
||||
Entry [ date.default_latitude <ALL> ]
|
||||
Current = '%s'
|
||||
}
|
||||
Entry [ date.default_longitude <ALL> ]
|
||||
Current = '%s'
|
||||
}
|
||||
Entry [ date.sunset_zenith <ALL> ]
|
||||
Current = '%s'
|
||||
}
|
||||
Entry [ date.sunrise_zenith <ALL> ]
|
||||
Current = '%s'
|
||||
Entry [ pcre.recursion_limit <ALL> ]
|
||||
Current = '%d'
|
||||
}
|
||||
}
|
||||
|
||||
- Constants [14] {
|
||||
Constant [ string DATE_ATOM ] { Y-m-d\TH:i:sP }
|
||||
Constant [ string DATE_COOKIE ] { l, d-M-y H:i:s T }
|
||||
Constant [ string DATE_ISO8601 ] { Y-m-d\TH:i:sO }
|
||||
Constant [ string DATE_RFC822 ] { D, d M y H:i:s O }
|
||||
Constant [ string DATE_RFC850 ] { l, d-M-y H:i:s T }
|
||||
Constant [ string DATE_RFC1036 ] { D, d M y H:i:s O }
|
||||
Constant [ string DATE_RFC1123 ] { D, d M Y H:i:s O }
|
||||
Constant [ string DATE_RFC2822 ] { D, d M Y H:i:s O }
|
||||
Constant [ string DATE_RFC3339 ] { Y-m-d\TH:i:sP }
|
||||
Constant [ string DATE_RSS ] { D, d M Y H:i:s O }
|
||||
Constant [ string DATE_W3C ] { Y-m-d\TH:i:sP }
|
||||
Constant [ integer SUNFUNCS_RET_TIMESTAMP ] { 0 }
|
||||
Constant [ integer SUNFUNCS_RET_STRING ] { 1 }
|
||||
Constant [ integer SUNFUNCS_RET_DOUBLE ] { 2 }
|
||||
- Constants [13] {
|
||||
Constant [ integer PREG_PATTERN_ORDER ] { 1 }
|
||||
Constant [ integer PREG_SET_ORDER ] { 2 }
|
||||
Constant [ integer PREG_OFFSET_CAPTURE ] { 256 }
|
||||
Constant [ integer PREG_SPLIT_NO_EMPTY ] { 1 }
|
||||
Constant [ integer PREG_SPLIT_DELIM_CAPTURE ] { 2 }
|
||||
Constant [ integer PREG_SPLIT_OFFSET_CAPTURE ] { 4 }
|
||||
Constant [ integer PREG_GREP_INVERT ] { 1 }
|
||||
Constant [ integer PREG_NO_ERROR ] { 0 }
|
||||
Constant [ integer PREG_INTERNAL_ERROR ] { 1 }
|
||||
Constant [ integer PREG_BACKTRACK_LIMIT_ERROR ] { 2 }
|
||||
Constant [ integer PREG_RECURSION_LIMIT_ERROR ] { 3 }
|
||||
Constant [ integer PREG_BAD_UTF8_ERROR ] { 4 }
|
||||
Constant [ string PCRE_VERSION ] { %s }
|
||||
}
|
||||
|
||||
- Functions {
|
||||
Function [ <internal:date> function strtotime ] {
|
||||
|
||||
- Parameters [2] {
|
||||
Parameter #0 [ <required> $time ]
|
||||
Parameter #1 [ <optional> $now ]
|
||||
}
|
||||
}
|
||||
Function [ <internal:date> function date ] {
|
||||
|
||||
- Parameters [2] {
|
||||
Parameter #0 [ <required> $format ]
|
||||
Parameter #1 [ <optional> $timestamp ]
|
||||
}
|
||||
}
|
||||
Function [ <internal:date> function idate ] {
|
||||
|
||||
- Parameters [2] {
|
||||
Parameter #0 [ <required> $format ]
|
||||
Parameter #1 [ <optional> $timestamp ]
|
||||
}
|
||||
}
|
||||
Function [ <internal:date> function gmdate ] {
|
||||
|
||||
- Parameters [2] {
|
||||
Parameter #0 [ <required> $format ]
|
||||
Parameter #1 [ <optional> $timestamp ]
|
||||
}
|
||||
}
|
||||
Function [ <internal:date> function mktime ] {
|
||||
|
||||
- Parameters [6] {
|
||||
Parameter #0 [ <optional> $hour ]
|
||||
Parameter #1 [ <optional> $min ]
|
||||
Parameter #2 [ <optional> $sec ]
|
||||
Parameter #3 [ <optional> $mon ]
|
||||
Parameter #4 [ <optional> $day ]
|
||||
Parameter #5 [ <optional> $year ]
|
||||
}
|
||||
}
|
||||
Function [ <internal:date> function gmmktime ] {
|
||||
|
||||
- Parameters [6] {
|
||||
Parameter #0 [ <optional> $hour ]
|
||||
Parameter #1 [ <optional> $min ]
|
||||
Parameter #2 [ <optional> $sec ]
|
||||
Parameter #3 [ <optional> $mon ]
|
||||
Parameter #4 [ <optional> $day ]
|
||||
Parameter #5 [ <optional> $year ]
|
||||
}
|
||||
}
|
||||
Function [ <internal:date> function checkdate ] {
|
||||
Function [ <internal:pcre> function preg_match ] {
|
||||
|
||||
- Parameters [3] {
|
||||
Parameter #0 [ <required> $month ]
|
||||
Parameter #1 [ <required> $day ]
|
||||
Parameter #2 [ <required> $year ]
|
||||
Parameter #0 [ <required> $param0 ]
|
||||
Parameter #1 [ <required> $param1 ]
|
||||
Parameter #2 [ <required> &$param2 ]
|
||||
}
|
||||
}
|
||||
Function [ <internal:date> function strftime ] {
|
||||
|
||||
- Parameters [2] {
|
||||
Parameter #0 [ <required> $format ]
|
||||
Parameter #1 [ <optional> $timestamp ]
|
||||
}
|
||||
}
|
||||
Function [ <internal:date> function gmstrftime ] {
|
||||
|
||||
- Parameters [2] {
|
||||
Parameter #0 [ <required> $format ]
|
||||
Parameter #1 [ <optional> $timestamp ]
|
||||
}
|
||||
}
|
||||
Function [ <internal:date> function time ] {
|
||||
|
||||
- Parameters [0] {
|
||||
}
|
||||
}
|
||||
Function [ <internal:date> function localtime ] {
|
||||
|
||||
- Parameters [2] {
|
||||
Parameter #0 [ <optional> $timestamp ]
|
||||
Parameter #1 [ <optional> $associative_array ]
|
||||
}
|
||||
}
|
||||
Function [ <internal:date> function getdate ] {
|
||||
|
||||
- Parameters [1] {
|
||||
Parameter #0 [ <optional> $timestamp ]
|
||||
}
|
||||
}
|
||||
Function [ <internal:date> function date_create ] {
|
||||
}
|
||||
Function [ <internal:date> function date_create_from_format ] {
|
||||
}
|
||||
Function [ <internal:date> function date_parse ] {
|
||||
}
|
||||
Function [ <internal:date> function date_parse_from_format ] {
|
||||
}
|
||||
Function [ <internal:date> function date_get_last_errors ] {
|
||||
}
|
||||
Function [ <internal:date> function date_format ] {
|
||||
}
|
||||
Function [ <internal:date> function date_format_locale ] {
|
||||
}
|
||||
Function [ <internal:date> function date_modify ] {
|
||||
}
|
||||
Function [ <internal:date> function date_timezone_get ] {
|
||||
}
|
||||
Function [ <internal:date> function date_timezone_set ] {
|
||||
}
|
||||
Function [ <internal:date> function date_offset_get ] {
|
||||
}
|
||||
Function [ <internal:date> function date_time_set ] {
|
||||
}
|
||||
Function [ <internal:date> function date_date_set ] {
|
||||
}
|
||||
Function [ <internal:date> function date_isodate_set ] {
|
||||
}
|
||||
Function [ <internal:date> function date_timestamp_set ] {
|
||||
}
|
||||
Function [ <internal:date> function date_timestamp_get ] {
|
||||
}
|
||||
Function [ <internal:date> function timezone_open ] {
|
||||
}
|
||||
Function [ <internal:date> function timezone_name_get ] {
|
||||
}
|
||||
Function [ <internal:date> function timezone_name_from_abbr ] {
|
||||
}
|
||||
Function [ <internal:date> function timezone_offset_get ] {
|
||||
}
|
||||
Function [ <internal:date> function timezone_transitions_get ] {
|
||||
}
|
||||
Function [ <internal:date> function timezone_identifiers_list ] {
|
||||
}
|
||||
Function [ <internal:date> function timezone_abbreviations_list ] {
|
||||
}
|
||||
Function [ <internal:date> function date_default_timezone_set ] {
|
||||
|
||||
- Parameters [1] {
|
||||
Parameter #0 [ <required> $timezone_identifier ]
|
||||
}
|
||||
}
|
||||
Function [ <internal:date> function date_default_timezone_get ] {
|
||||
|
||||
- Parameters [0] {
|
||||
}
|
||||
}
|
||||
Function [ <internal:date> function date_sunrise ] {
|
||||
|
||||
- Parameters [6] {
|
||||
Parameter #0 [ <required> $time ]
|
||||
Parameter #1 [ <optional> $format ]
|
||||
Parameter #2 [ <optional> $latitude ]
|
||||
Parameter #3 [ <optional> $longitude ]
|
||||
Parameter #4 [ <optional> $zenith ]
|
||||
Parameter #5 [ <optional> $gmt_offset ]
|
||||
}
|
||||
}
|
||||
Function [ <internal:date> function date_sunset ] {
|
||||
|
||||
- Parameters [6] {
|
||||
Parameter #0 [ <required> $time ]
|
||||
Parameter #1 [ <optional> $format ]
|
||||
Parameter #2 [ <optional> $latitude ]
|
||||
Parameter #3 [ <optional> $longitude ]
|
||||
Parameter #4 [ <optional> $zenith ]
|
||||
Parameter #5 [ <optional> $gmt_offset ]
|
||||
}
|
||||
}
|
||||
Function [ <internal:date> function date_sun_info ] {
|
||||
Function [ <internal:pcre> function preg_match_all ] {
|
||||
|
||||
- Parameters [3] {
|
||||
Parameter #0 [ <required> $time ]
|
||||
Parameter #1 [ <required> $latitude ]
|
||||
Parameter #2 [ <required> $longitude ]
|
||||
Parameter #0 [ <required> $param0 ]
|
||||
Parameter #1 [ <required> $param1 ]
|
||||
Parameter #2 [ <required> &$param2 ]
|
||||
}
|
||||
}
|
||||
}
|
||||
Function [ <internal:pcre> function preg_replace ] {
|
||||
|
||||
- Classes [2] {
|
||||
Class [ <internal:date> class DateTime ] {
|
||||
|
||||
- Constants [11] {
|
||||
Constant [ string ATOM ] { Y-m-d\TH:i:sP }
|
||||
Constant [ string COOKIE ] { l, d-M-y H:i:s T }
|
||||
Constant [ string ISO8601 ] { Y-m-d\TH:i:sO }
|
||||
Constant [ string RFC822 ] { D, d M y H:i:s O }
|
||||
Constant [ string RFC850 ] { l, d-M-y H:i:s T }
|
||||
Constant [ string RFC1036 ] { D, d M y H:i:s O }
|
||||
Constant [ string RFC1123 ] { D, d M Y H:i:s O }
|
||||
Constant [ string RFC2822 ] { D, d M Y H:i:s O }
|
||||
Constant [ string RFC3339 ] { Y-m-d\TH:i:sP }
|
||||
Constant [ string RSS ] { D, d M Y H:i:s O }
|
||||
Constant [ string W3C ] { Y-m-d\TH:i:sP }
|
||||
}
|
||||
|
||||
- Static properties [0] {
|
||||
}
|
||||
|
||||
- Static methods [2] {
|
||||
Method [ <internal:date> static public method createFromFormat ] {
|
||||
}
|
||||
|
||||
Method [ <internal:date> static public method getLastErrors ] {
|
||||
}
|
||||
}
|
||||
|
||||
- Properties [0] {
|
||||
}
|
||||
|
||||
- Methods [11] {
|
||||
Method [ <internal:date, ctor> public method __construct ] {
|
||||
}
|
||||
|
||||
Method [ <internal:date> public method format ] {
|
||||
}
|
||||
|
||||
Method [ <internal:date> public method modify ] {
|
||||
}
|
||||
|
||||
Method [ <internal:date> public method getTimezone ] {
|
||||
}
|
||||
|
||||
Method [ <internal:date> public method setTimezone ] {
|
||||
}
|
||||
|
||||
Method [ <internal:date> public method getOffset ] {
|
||||
}
|
||||
|
||||
Method [ <internal:date> public method setTime ] {
|
||||
}
|
||||
|
||||
Method [ <internal:date> public method setDate ] {
|
||||
}
|
||||
|
||||
Method [ <internal:date> public method setISODate ] {
|
||||
}
|
||||
|
||||
Method [ <internal:date> public method setTimestamp ] {
|
||||
}
|
||||
|
||||
Method [ <internal:date> public method getTimestamp ] {
|
||||
}
|
||||
- Parameters [5] {
|
||||
Parameter #0 [ <required> $param0 ]
|
||||
Parameter #1 [ <required> $param1 ]
|
||||
Parameter #2 [ <required> $param2 ]
|
||||
Parameter #3 [ <required> $param3 ]
|
||||
Parameter #4 [ <required> &$param4 ]
|
||||
}
|
||||
}
|
||||
Function [ <internal:pcre> function preg_replace_callback ] {
|
||||
|
||||
Class [ <internal:date> class DateTimeZone ] {
|
||||
|
||||
- Constants [12] {
|
||||
Constant [ integer AMERICA ] { 1 }
|
||||
Constant [ integer ANTARCTICA ] { 2 }
|
||||
Constant [ integer ARCTIC ] { 4 }
|
||||
Constant [ integer ASIA ] { 8 }
|
||||
Constant [ integer ATLANTIC ] { 16 }
|
||||
Constant [ integer AUSTRALIA ] { 32 }
|
||||
Constant [ integer EUROPE ] { 64 }
|
||||
Constant [ integer INDIAN ] { 128 }
|
||||
Constant [ integer PACIFIC ] { 256 }
|
||||
Constant [ integer UTC ] { 512 }
|
||||
Constant [ integer ALL ] { 1023 }
|
||||
Constant [ integer ALL_WITH_BC ] { 2047 }
|
||||
}
|
||||
|
||||
- Static properties [0] {
|
||||
}
|
||||
|
||||
- Static methods [2] {
|
||||
Method [ <internal:date> static public method listAbbreviations ] {
|
||||
}
|
||||
|
||||
Method [ <internal:date> static public method listIdentifiers ] {
|
||||
}
|
||||
}
|
||||
|
||||
- Properties [0] {
|
||||
}
|
||||
|
||||
- Methods [4] {
|
||||
Method [ <internal:date, ctor> public method __construct ] {
|
||||
}
|
||||
|
||||
Method [ <internal:date> public method getName ] {
|
||||
}
|
||||
|
||||
Method [ <internal:date> public method getOffset ] {
|
||||
}
|
||||
|
||||
Method [ <internal:date> public method getTransitions ] {
|
||||
}
|
||||
- Parameters [5] {
|
||||
Parameter #0 [ <required> $param0 ]
|
||||
Parameter #1 [ <required> $param1 ]
|
||||
Parameter #2 [ <required> $param2 ]
|
||||
Parameter #3 [ <required> $param3 ]
|
||||
Parameter #4 [ <required> &$param4 ]
|
||||
}
|
||||
}
|
||||
Function [ <internal:pcre> function preg_split ] {
|
||||
}
|
||||
Function [ <internal:pcre> function preg_quote ] {
|
||||
}
|
||||
Function [ <internal:pcre> function preg_grep ] {
|
||||
}
|
||||
Function [ <internal:pcre> function preg_last_error ] {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user