Home
last modified time | relevance | path

Searched refs:timestamp (Results 1 – 25 of 167) sorted by last modified time

1234567

/php-src/
H A DNEWS181 . Fixed bug GH-12532 (PharData created from zip has incorrect timestamp).
H A DUPGRADING186 DateTime[Immutable]::createFromTimestamp(int|float $timestamp): static.
209 . Added support for the unix timestamp extension for zip archives.
H A DUPGRADING.INTERNALS210 the given unix timestamp using GMT +00:00.
/php-src/.github/workflows/
H A Dpush.yml118 append-timestamp: false
172 append-timestamp: false
248 append-timestamp: false
H A Dnightly.yml826 append-timestamp: false
/php-src/docs/
H A Drelease-process.md942 times, as needed, but we will always advance the `Expires` timestamp on a
/php-src/ext/standard/
H A Dbasic_functions.stub.php1980 function time_sleep_until(float $timestamp): bool {} argument
2134 function strptime(string $timestamp, string $format): array|false {} argument
H A Dbasic_functions_arginfo.h425 ZEND_ARG_TYPE_INFO(0, timestamp, IS_DOUBLE, 0)
608 ZEND_ARG_TYPE_INFO(0, timestamp, IS_STRING, 0)
/php-src/ext/intl/
H A Dphp_intl.stub.php193 function intlcal_set_time(IntlCalendar $calendar, float $timestamp): bool {} argument
212 function intlcal_field_difference(IntlCalendar $calendar, float $timestamp, int $field): int|false … argument
250 function intlcal_is_weekend(IntlCalendar $calendar, ?float $timestamp = null): bool {} argument
285 function intlgregcal_set_gregorian_change(IntlGregorianCalendar $calendar, float $timestamp): bool … argument
598 function intltz_get_offset(IntlTimeZone $timezone, float $timestamp, bool $local, &$rawOffset, &$ds… argument
H A Dphp_intl_arginfo.h32 ZEND_ARG_TYPE_INFO(0, timestamp, IS_DOUBLE, 0)
76 ZEND_ARG_TYPE_INFO(0, timestamp, IS_DOUBLE, 0)
138 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, timestamp, IS_DOUBLE, 1, "null")
192 ZEND_ARG_TYPE_INFO(0, timestamp, IS_DOUBLE, 0)
718 ZEND_ARG_TYPE_INFO(0, timestamp, IS_DOUBLE, 0)
/php-src/ext/phar/
H A Dutil.c587 etemp.timestamp = time(0); in phar_get_or_create_entry_data()
H A Dphar.c1159 PHAR_GET_32(buffer, entry.timestamp); in phar_parse_pharfile()
1162 mydata->min_timestamp = entry.timestamp; in phar_parse_pharfile()
1163 mydata->max_timestamp = entry.timestamp; in phar_parse_pharfile()
1165 if (mydata->min_timestamp > entry.timestamp) { in phar_parse_pharfile()
1166 mydata->min_timestamp = entry.timestamp; in phar_parse_pharfile()
1167 } else if (mydata->max_timestamp < entry.timestamp) { in phar_parse_pharfile()
1168 mydata->max_timestamp = entry.timestamp; in phar_parse_pharfile()
H A Dstream.c477 data->internal_file->timestamp = time(0); in phar_stream_flush()
503 ssb->sb.st_mtime = data->timestamp; in phar_dostat()
504 ssb->sb.st_atime = data->timestamp; in phar_dostat()
505 ssb->sb.st_ctime = data->timestamp; in phar_dostat()
511 ssb->sb.st_mtime = data->timestamp; in phar_dostat()
512 ssb->sb.st_atime = data->timestamp; in phar_dostat()
513 ssb->sb.st_ctime = data->timestamp; in phar_dostat()
/php-src/ext/opcache/
H A DZendAccelerator.h123 accel_time_t timestamp; /* the script modification time */ member
H A Dzend_accelerator_module.c624 add_assoc_long(&persistent_script_report, "timestamp", (zend_long)script->timestamp);
H A DZendAccelerator.c1128 if (persistent_script->timestamp == 0) { in do_validate_timestamps()
1136 if (zend_get_file_handle_timestamp(file_handle, NULL) == persistent_script->timestamp) { in do_validate_timestamps()
1151 ret = zend_get_file_handle_timestamp(&ps_handle, NULL) == persistent_script->timestamp in do_validate_timestamps()
1161 if (persistent_script->timestamp == 0) { in validate_timestamp_and_record()
1370 persistent_script->timestamp = 0; in zend_accel_discard_script()
1579 (new_persistent_script->timestamp == existing_persistent_script->timestamp))) { in cache_script_in_shared_memory()
1733 accel_time_t timestamp = 0; in opcache_compile_file() local
1768timestamp = zend_get_file_handle_timestamp(file_handle, ZCG(accel_directives).max_file_size > 0 ? … in opcache_compile_file()
1773 if (timestamp == 0) { in opcache_compile_file()
1780 … ((accel_time_t)(ZCG(request_time) - ZCG(accel_directives).file_update_protection) < timestamp)) { in opcache_compile_file()
[all …]
/php-src/ext/date/
H A Dphp_date.c1258 zend_long timestamp; in php_strftime() local
1279 timestamp = (zend_long) php_time(); in php_strftime()
1382 zend_long timestamp; in PHP_FUNCTION() local
1395 timestamp = (zend_long) php_time(); in PHP_FUNCTION()
1438 zend_long timestamp; in PHP_FUNCTION() local
1449 timestamp = (zend_long) php_time(); in PHP_FUNCTION()
1473 add_index_long(return_value, 0, timestamp); in PHP_FUNCTION()
3827 zend_long timestamp; in PHP_FUNCTION() local
3843 zend_long timestamp; in PHP_METHOD() local
3926 zend_long timestamp; in PHP_FUNCTION() local
[all …]
H A Dphp_date.stub.php104 function date(string $format, ?int $timestamp = null): string {} argument
106 function idate(string $format, ?int $timestamp = null): int|false {} argument
109 function gmdate(string $format, ?int $timestamp = null): string {} argument
125 function strftime(string $format, ?int $timestamp = null): string|false {} argument
131 function gmstrftime(string $format, ?int $timestamp = null): string|false {} argument
145 function getdate(?int $timestamp = null): array {} argument
207 function date_timestamp_set(DateTime $object, int $timestamp): DateTime {} argument
266 int $timestamp, int $returnFormat = SUNFUNCS_RET_STRING, argument
275 int $timestamp, int $returnFormat = SUNFUNCS_RET_STRING, argument
441 public function setTimestamp(int $timestamp): DateTime {} argument
[all …]
H A Dphp_date_arginfo.h11 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, timestamp, IS_LONG, 1, "null")
16 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, timestamp, IS_LONG, 1, "null")
40 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, timestamp, IS_LONG, 1, "null")
49 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, timestamp, IS_LONG, 1, "null")
54 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, timestamp, IS_LONG, 1, "null")
151 ZEND_ARG_TYPE_INFO(0, timestamp, IS_LONG, 0)
212 ZEND_ARG_TYPE_INFO(0, timestamp, IS_LONG, 0)
223 ZEND_ARG_TYPE_INFO(0, timestamp, IS_LONG, 0)
286 ZEND_ARG_TYPE_MASK(0, timestamp, MAY_BE_LONG|MAY_BE_DOUBLE, NULL)
334 ZEND_ARG_TYPE_INFO(0, timestamp, IS_LONG, 0)
[all …]
/php-src/build/
H A Dltmain.sh4378 # $show "echo timestamp > $libobj"
4379 # $run eval "echo timestamp > $libobj" || exit $?
/php-src/ext/intl/calendar/
H A Dcalendar.stub.php109 public function fieldDifference(float $timestamp, int $field): int|false {} argument
302 public function isWeekend(?float $timestamp = null): bool {} argument
355 public function setTime(float $timestamp): bool {} argument
392 public function setGregorianChange(float $timestamp): bool {} argument
H A Dcalendar_arginfo.h17 ZEND_ARG_TYPE_INFO(0, timestamp, IS_DOUBLE, 0)
113 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, timestamp, IS_DOUBLE, 1, "null")
164 ZEND_ARG_TYPE_INFO(0, timestamp, IS_DOUBLE, 0)
/php-src/ext/com_dotnet/
H A Dcom_variant.c965 zend_long timestamp; in PHP_FUNCTION() local
972 &timestamp)) { in PHP_FUNCTION()
976 if (timestamp < 0) { in PHP_FUNCTION()
983 ttstamp = timestamp; in PHP_FUNCTION()
/php-src/ext/date/tests/
H A DcreateFromTimestamp.phpt204 …amp(%f): DateRangeError: DateTime::createFromTimestamp(): Argument #1 ($timestamp) must be a finit…
205 …DateRangeError: DateTimeImmutable::createFromTimestamp(): Argument #1 ($timestamp) must be a finit…
206 …amp(%f): DateRangeError: DateTime::createFromTimestamp(): Argument #1 ($timestamp) must be a finit…
207 …DateRangeError: DateTimeImmutable::createFromTimestamp(): Argument #1 ($timestamp) must be a finit…
208 …mp(NAN): DateRangeError: DateTime::createFromTimestamp(): Argument #1 ($timestamp) must be a finit…
209 …DateRangeError: DateTimeImmutable::createFromTimestamp(): Argument #1 ($timestamp) must be a finit…
210 …mp(INF): DateRangeError: DateTime::createFromTimestamp(): Argument #1 ($timestamp) must be a finit…
211 …DateRangeError: DateTimeImmutable::createFromTimestamp(): Argument #1 ($timestamp) must be a finit…
212 …p(-INF): DateRangeError: DateTime::createFromTimestamp(): Argument #1 ($timestamp) must be a finit…
213 …DateRangeError: DateTimeImmutable::createFromTimestamp(): Argument #1 ($timestamp) must be a finit…
H A DcreateFromTimestamp_32bit.phpt121 …3648.5): DateRangeError: DateTime::createFromTimestamp(): Argument #1 ($timestamp) must be a finit…
122 …DateRangeError: DateTimeImmutable::createFromTimestamp(): Argument #1 ($timestamp) must be a finit…
123 …4671.0): DateRangeError: DateTime::createFromTimestamp(): Argument #1 ($timestamp) must be a finit…
124 …DateRangeError: DateTimeImmutable::createFromTimestamp(): Argument #1 ($timestamp) must be a finit…
125 …4673.0): DateRangeError: DateTime::createFromTimestamp(): Argument #1 ($timestamp) must be a finit…
126 …DateRangeError: DateTimeImmutable::createFromTimestamp(): Argument #1 ($timestamp) must be a finit…

Completed in 117 milliseconds

1234567