Home
last modified time | relevance | path

Searched refs:now (Results 1 – 25 of 183) sorted by last modified time

12345678

/PHP-7.4/
H A DNEWS1399 . The built-in CLI server now reports the request method in log files.
1464 . The bundled libgd behaves now like system libgd wrt. IMG_CROP_DEFAULT never
1467 IMG_CROP_DEFAULT; passing -1 is now deprecated.
1482 . The hash extension is now an integral part of PHP and cannot be disabled
1564 . openssl_random_pseudo_bytes() now throws in error conditions.
H A Dconfigure.ac845 PHP_ARG_ENABLE([rtld-now],
847 [AS_HELP_STRING([--enable-rtld-now],
/PHP-7.4/sapi/fpm/fpm/
H A Dfpm_request.c40 struct timeval now; in fpm_request_accepting() local
42 fpm_clock_get(&now); in fpm_request_accepting()
51 proc->tv = now; in fpm_request_accepting()
63 struct timeval now; in fpm_request_reading_headers() local
69 fpm_clock_get(&now); in fpm_request_reading_headers()
82 proc->tv = now; in fpm_request_reading_headers()
111 struct timeval now; in fpm_request_info() local
122 proc->tv = now; in fpm_request_info()
166 proc->tv = now; in fpm_request_executing()
191 proc->tv = now; in fpm_request_end()
[all …]
H A Dfpm_status.c52 struct timeval duration, now; in fpm_status_export_to_zval() local
80 fpm_clock_get(&now); in fpm_status_export_to_zval()
124 timersub(&now, &procs[i].accepted, &duration); in fpm_status_export_to_zval()
488 struct timeval duration, now; in fpm_status_handle_request() local
493 fpm_clock_get(&now); in fpm_status_handle_request()
537 timersub(&now, &proc.accepted, &duration); in fpm_status_handle_request()
H A Dfpm_children.c269 time_t now = tv1.tv_sec; in fpm_children_bury() local
273 last_faults[fault++] = now; in fpm_children_bury()
280 if (now - last_faults[i] > fpm_global_config.emergency_restart_interval) { in fpm_children_bury()
/PHP-7.4/ext/date/
H A Dphp_date.c97 ZEND_ARG_INFO(0, now)
1525 now->tz_info = tzi; in PHP_FUNCTION()
1553 timelib_time *now; in php_mktime() local
1574 now->tz_info = tzi; in php_mktime()
1588 now->y = yea; in php_mktime()
1591 now->d = day; in php_mktime()
1594 now->m = mon; in php_mktime()
1597 now->s = sec; in php_mktime()
1600 now->i = min; in php_mktime()
1603 now->h = hou; in php_mktime()
[all …]
H A Dphp_date.h204 PHPAPI zend_long php_parse_date(char *string, zend_long *now);
/PHP-7.4/ext/mysqli/tests/
H A Dbug64726.phpt23 …fetch_object(): (HY000/2014): Commands out of sync; you can't run this command now in %s on line %d
H A Dmysqli_report.phpt326 Warning: mysqli_autocommit(): (%s/%d): Commands out of sync; you can't run this command now in %s o…
328 Warning: mysqli_commit(): (%s/%d): Commands out of sync; you can't run this command now in %s on li…
330 Warning: mysqli_rollback(): (%s/%d): Commands out of sync; you can't run this command now in %s on …
332 Warning: mysqli_stmt_prepare(): (%s/%d): Commands out of sync; you can't run this command now in %s…
H A Dbug80837.phpt38 Commands out of sync; you can't run this command now
H A Dmysqli_stmt_get_result.phpt201 [040] [2014] [Commands out of sync; you can't run this command now]
H A Dmysqli_stmt_send_long_data_packet_size_libmysql.phpt67 TODO - we skip this part of the test for now, because of bugs.mysql.com/26824
H A Dmysqli_stmt_get_result2.phpt173 [017] [2014] Commands out of sync; you can't run this command now
H A Dmysqli_stmt_fetch.phpt95 [014] [%d] Commands out of sync; you can't run this command now
H A Dmysqli_reconnect.phpt87 // ... and now we try KILL
H A Dmysqli_stmt_bind_param_type_juggling.phpt98 /* now, let's have two columns of different type and do type juggling */
/PHP-7.4/ext/pdo_pgsql/tests/
H A Dbug_33876.phpt52 # And now using emulator prepares
/PHP-7.4/ext/fileinfo/
H A Dlibmagic.patch1709 /* Do this here and now, because struct stat gets re-defined on solaris */
3543 + /* pce now contains the compiled regex */
3569 + tmpcopy now contains two elements:
/PHP-7.4/ext/date/lib/
H A Dparse_date.re1030 'now'
1032 DEBUG_OUTPUT("now");
2454 if (parsed->y == TIMELIB_UNSET) parsed->y = now->y != TIMELIB_UNSET ? now->y : 0;
2455 if (parsed->m == TIMELIB_UNSET) parsed->m = now->m != TIMELIB_UNSET ? now->m : 0;
2456 if (parsed->d == TIMELIB_UNSET) parsed->d = now->d != TIMELIB_UNSET ? now->d : 0;
2457 if (parsed->h == TIMELIB_UNSET) parsed->h = now->h != TIMELIB_UNSET ? now->h : 0;
2458 if (parsed->i == TIMELIB_UNSET) parsed->i = now->i != TIMELIB_UNSET ? now->i : 0;
2464 parsed->tz_abbr = now->tz_abbr ? timelib_strdup(now->tz_abbr) : NULL;
2467 …parsed->tz_info = now->tz_info ? (!(options & TIMELIB_NO_CLONE) ? timelib_tzinfo_clone(now->tz_inf…
2471 /* parsed->tz_abbr = now->tz_abbr ? timelib_strdup(now->tz_abbr) : NULL;
[all …]
H A Dparse_date.c25560 if (parsed->us == TIMELIB_UNSET) parsed->us = now->us != TIMELIB_UNSET ? now->us : 0; in timelib_fill_holes()
25562 if (parsed->y == TIMELIB_UNSET) parsed->y = now->y != TIMELIB_UNSET ? now->y : 0; in timelib_fill_holes()
25563 if (parsed->m == TIMELIB_UNSET) parsed->m = now->m != TIMELIB_UNSET ? now->m : 0; in timelib_fill_holes()
25564 if (parsed->d == TIMELIB_UNSET) parsed->d = now->d != TIMELIB_UNSET ? now->d : 0; in timelib_fill_holes()
25565 if (parsed->h == TIMELIB_UNSET) parsed->h = now->h != TIMELIB_UNSET ? now->h : 0; in timelib_fill_holes()
25566 if (parsed->i == TIMELIB_UNSET) parsed->i = now->i != TIMELIB_UNSET ? now->i : 0; in timelib_fill_holes()
25567 if (parsed->s == TIMELIB_UNSET) parsed->s = now->s != TIMELIB_UNSET ? now->s : 0; in timelib_fill_holes()
25568 if (parsed->z == TIMELIB_UNSET) parsed->z = now->z != TIMELIB_UNSET ? now->z : 0; in timelib_fill_holes()
25569 if (parsed->dst == TIMELIB_UNSET) parsed->dst = now->dst != TIMELIB_UNSET ? now->dst : 0; in timelib_fill_holes()
25572 parsed->tz_abbr = now->tz_abbr ? timelib_strdup(now->tz_abbr) : NULL; in timelib_fill_holes()
[all …]
/PHP-7.4/ext/opcache/
H A DZendAccelerator.c153 FILETIME now; in zend_accel_get_time() local
154 GetSystemTimeAsFileTime(&now); in zend_accel_get_time()
156 …return (time_t) ((((((__int64)now.dwHighDateTime) << 32)|now.dwLowDateTime) - 116444736000000000L)… in zend_accel_get_time()
/PHP-7.4/ext/intl/timezone/
H A Dtimezone_class.cpp326 UDate now = Calendar::getNow(); in TimeZone_get_debug_info() local
327 tz->getOffset(now, FALSE, rawOffset, dstOffset, uec); in TimeZone_get_debug_info()
/PHP-7.4/ext/openssl/
H A Dxp_ssl.c1074 struct timeval now; in php_openssl_limit_handshake_reneg() local
1079 gettimeofday(&now, NULL); in php_openssl_limit_handshake_reneg()
1083 sslsock->reneg->prev_handshake = now.tv_sec; in php_openssl_limit_handshake_reneg()
1087 elapsed_time = (now.tv_sec - sslsock->reneg->prev_handshake); in php_openssl_limit_handshake_reneg()
1088 sslsock->reneg->prev_handshake = now.tv_sec; in php_openssl_limit_handshake_reneg()
/PHP-7.4/ext/session/
H A Dsession.c1165 time_t now; in CACHE_LIMITER_FUNC() local
1168 now = tv.tv_sec + PS(cache_expire) * 60; in CACHE_LIMITER_FUNC()
1170 strcpy_gmt(buf + sizeof(EXPIRES) - 1, &now); in CACHE_LIMITER_FUNC()
/PHP-7.4/ext/phar/
H A Dzip.c127 time_t now; in phar_zip_d2u_time() local
129 now = time(NULL); in phar_zip_d2u_time()
130 tm = php_localtime_r(&now, &tmbuf); in phar_zip_d2u_time()

Completed in 146 milliseconds

12345678