/PHP-5.3/ext/date/tests/ |
H A D | strtotime_basic.phpt | 10 * The term "Monday December 2008" will be parsed as the first Monday in December 2008. 14 * This is parsed as the "first following Monday OR the current day if it is a Monday" 18 * This is parsed as the "second following Monday OR the first following 23 * This is parsed as the "third following Monday OR the second following 28 * This is parsed as the "first following Monday after the first Monday in December" 32 * This is parsed as the "second following Monday after the first Monday in December" 36 * This is parsed as the "third following Monday after the first Monday in December"
|
H A D | bug41523-64bit.phpt | 2 Bug #41523 (strtotime('0000-00-00 00:00:00') is parsed as 1999-11-30) (64 bit) 36 string(27) "The parsed date was invalid"
|
H A D | bug41523.phpt | 2 Bug #41523 (strtotime('0000-00-00 00:00:00') is parsed as 1999-11-30) (32 bit) 36 string(27) "The parsed date was invalid"
|
H A D | date_get_last_errors_basic.phpt | 10 var_dump(date_get_last_errors()); // no date was parsed, so no errors
|
H A D | bug41709.phpt | 24 [22] => The parsed date was invalid
|
H A D | bug52430.phpt | 28 string(27) "The parsed time was invalid"
|
H A D | date_parse_001.phpt | 131 string(27) "The parsed date was invalid"
|
/PHP-5.3/ext/pdo/ |
H A D | pdo.c | 216 unsigned long data_source_len, struct pdo_data_src_parser *parsed, in php_pdo_parse_data_source() argument 270 …if (0 == strncmp(data_source + optstart, parsed[j].optname, nlen) && parsed[j].optname[nlen] == '\… in php_pdo_parse_data_source() 272 if (parsed[j].freeme) { in php_pdo_parse_data_source() 273 efree(parsed[j].optval); in php_pdo_parse_data_source() 277 parsed[j].optval = estrndup(data_source + valstart, semi - valstart - n_semicolumns); in php_pdo_parse_data_source() 283 parsed[j].optval = new_val; in php_pdo_parse_data_source() 300 parsed[j].freeme = 1; in php_pdo_parse_data_source()
|
H A D | php_pdo_driver.h | 651 unsigned long data_source_len, struct pdo_data_src_parser *parsed,
|
/PHP-5.3/tests/basic/ |
H A D | 030.phpt | 2 Bug#55504 (Content-Type header is not parsed correctly on HTTP POST request)
|
H A D | 031.phpt | 2 Bug#55504 (Content-Type header is not parsed correctly on HTTP POST request)
|
/PHP-5.3/ext/date/lib/ |
H A D | parse_date.re | 2230 parsed->h = 0; 2231 parsed->i = 0; 2232 parsed->s = 0; 2233 parsed->f = 0; 2235 if (parsed->y == TIMELIB_UNSET) parsed->y = now->y != TIMELIB_UNSET ? now->y : 0; 2236 if (parsed->d == TIMELIB_UNSET) parsed->d = now->d != TIMELIB_UNSET ? now->d : 0; 2237 if (parsed->m == TIMELIB_UNSET) parsed->m = now->m != TIMELIB_UNSET ? now->m : 0; 2238 if (parsed->h == TIMELIB_UNSET) parsed->h = now->h != TIMELIB_UNSET ? now->h : 0; 2239 if (parsed->i == TIMELIB_UNSET) parsed->i = now->i != TIMELIB_UNSET ? now->i : 0; 2245 if (!parsed->tz_abbr) { [all …]
|
H A D | timelib.h | 73 void timelib_fill_holes(timelib_time *parsed, timelib_time *now, int options);
|
H A D | parse_date.c | 25223 parsed->h = 0; in timelib_fill_holes() 25224 parsed->i = 0; in timelib_fill_holes() 25225 parsed->s = 0; in timelib_fill_holes() 25226 parsed->f = 0; in timelib_fill_holes() 25228 if (parsed->y == TIMELIB_UNSET) parsed->y = now->y != TIMELIB_UNSET ? now->y : 0; in timelib_fill_holes() 25229 if (parsed->d == TIMELIB_UNSET) parsed->d = now->d != TIMELIB_UNSET ? now->d : 0; in timelib_fill_holes() 25230 if (parsed->m == TIMELIB_UNSET) parsed->m = now->m != TIMELIB_UNSET ? now->m : 0; in timelib_fill_holes() 25231 if (parsed->h == TIMELIB_UNSET) parsed->h = now->h != TIMELIB_UNSET ? now->h : 0; in timelib_fill_holes() 25232 if (parsed->i == TIMELIB_UNSET) parsed->i = now->i != TIMELIB_UNSET ? now->i : 0; in timelib_fill_holes() 25238 if (!parsed->tz_abbr) { in timelib_fill_holes() [all …]
|
/PHP-5.3/ext/standard/tests/general_functions/ |
H A D | bug52138.phpt | 2 Bug #52138 (Constants are parsed into the ini file for section names)
|
H A D | phpinfo.phpt | 29 Additional .ini files parsed => %a
|
/PHP-5.3/ext/intl/tests/ |
H A D | dateformat_parse.phpt | 54 $parsed = ut_datefmt_parse( $fmt , $text_entry[0] , $parse_pos ); 60 $res_str .= "\nParsed: $parsed; parse_pos : $parse_pos\n";
|
H A D | dateformat_parse_timestamp_parsepos.phpt | 57 $parsed = ut_datefmt_parse( $fmt , $text_entry, $pos); 59 $res_str .= "\nParsed text is : $parsed; Position = $pos";
|
H A D | dateformat_format_parse.phpt | 83 $parsed = ut_datefmt_parse( $fmt , $formatted); 85 $res_str .= "\nParsed timestamp is : $parsed";
|
/PHP-5.3/ext/soap/tests/bugs/ |
H A D | bug30175.phpt | 2 Bug #30175 (SOAP results aren't parsed correctly)
|
/PHP-5.3/ |
H A D | README.PHP4-TO-PHP5-THIN-CHANGES | 46 However the PHPDoc style comments /** */ ,which starting PHP 5 are parsed
|
H A D | README.namespaces | 92 current namespace (and are known at the time the call is parsed) are
|
H A D | NEWS | 757 . Fixed bug #55504 (Content-Type header is not parsed correctly on 1949 - Fixed bug #52138 (Constants are parsed into the ini file for section names). 2130 - Fixed bug #46111 (Some timezone identifiers can not be parsed). (Derick) 2208 - Fixed bug #50952 (allow underscore _ in constants parsed in php.ini files). 3016 - Added DOMNode::getLineNo to get line number of parsed node. (Rob) 3057 - Fixed bug #48624 (.user.ini never gets parsed). (Pierre) 3692 in parsed file). (Jani) 4099 - Fixed bug #42359 (xsd:list type not parsed). (Dmitry) 4334 - Fixed bug #41523 (strtotime('0000-00-00 00:00:00') is parsed as 1999-11-30). 6978 - Fixed bug #30175 (SOAP results aren't parsed correctly). (Dmitry)
|
/PHP-5.3/Zend/tests/ |
H A D | bug60771.phpt | 2 test of larger than 8kb text file being parsed by require statement
|
/PHP-5.3/ext/spl/ |
H A D | spl_directory.c | 679 int parsed, len; in spl_filesystem_object_construct() local 687 parsed = zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|l", &path, &len, &flags); in spl_filesystem_object_construct() 690 parsed = zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &path, &len); in spl_filesystem_object_construct() 698 if (parsed == FAILURE) { in spl_filesystem_object_construct()
|