/PHP-8.0/ext/date/tests/ |
H A D | bug46268.phpt | 7 $now = new DateTime('2008-10-10 01:02:03'); 8 echo $now->format("Y-m-d H:i:s") . PHP_EOL; 10 $now->modify("1 day"); 11 echo $now->format("Y-m-d H:i:s") . PHP_EOL; 13 $now->modify("1 hour"); 14 echo $now->format("Y-m-d H:i:s") . PHP_EOL; 16 $now->setTime(0, 0, 0); 17 //date_time_set($now, 0, 0, 0); 18 echo $now->format("Y-m-d H:i:s") . PHP_EOL;
|
H A D | bug77097.phpt | 5 $now = new DateTime('2018-11-03 11:34:20.781751'); 8 $diff = $now->diff($ago); 11 $diff = $ago->diff($now); 14 $diff = $now->diff($ago, true); 17 $diff = $ago->diff($now, true);
|
H A D | bug50055.phpt | 5 $now = '2010-03-07 13:21:38 UTC'; 7 $da1 = date_create( $now ); 8 $ds1 = date_create( $now ); 15 $da2 = date_create( $now ); 16 $ds2 = date_create( $now );
|
H A D | bug75857.phpt | 7 $longDate = new DateTime('now', new DateTimeZone('America/Argentina/ComodRivadavia')); 8 $mediumDate = new DateTime('now', new DateTimeZone('America/Indiana/Indianapolis')); 9 $smallDate = new DateTime('now', new DateTimeZone('America/Sao_Paulo'));
|
H A D | bug80057.phpt | 5 $now = new DateTimeImmutable; 7 $nowStr = $now->format("H:i");
|
/PHP-8.0/ext/standard/tests/serialize/ |
H A D | bug78438.phpt | 84 > Serializing now 85 > Unserializing now 89 > Serializing now 90 > Unserializing now 94 > Serializing now 95 > Unserializing now 99 > Serializing now 104 > Serializing now 109 > Serializing now 114 > Serializing now [all …]
|
/PHP-8.0/sapi/fpm/fpm/ |
H A D | fpm_request.c | 40 struct timeval now; in fpm_request_accepting() local 42 fpm_clock_get(&now); in fpm_request_accepting() 53 proc->tv = now; in fpm_request_accepting() 64 struct timeval now; in fpm_request_reading_headers() local 70 fpm_clock_get(&now); in fpm_request_reading_headers() 85 proc->tv = now; in fpm_request_reading_headers() 113 struct timeval now; in fpm_request_info() local 124 proc->tv = now; in fpm_request_info() 167 proc->tv = now; in fpm_request_executing() 191 proc->tv = now; in fpm_request_end() [all …]
|
H A D | fpm_events.c | 34 #define fpm_event_set_timeout(ev, now) timeradd(&(now), &(ev)->frequency, &(ev)->timeout); argument 394 struct timeval now; in fpm_event_loop() local 403 fpm_clock_get(&now); in fpm_event_loop() 420 if (!timerisset(&ms) || timercmp(&ms, &now, <) || timercmp(&ms, &now, ==)) { in fpm_event_loop() 423 timersub(&ms, &now, &tmp); in fpm_event_loop() 442 fpm_clock_get(&now); in fpm_event_loop() 444 if (timercmp(&now, &q->ev->timeout, >) || timercmp(&now, &q->ev->timeout, ==)) { in fpm_event_loop() 447 fpm_event_set_timeout(ev, now); in fpm_event_loop() 507 struct timeval now; in fpm_event_add() local 528 fpm_clock_get(&now); in fpm_event_add() [all …]
|
H A D | fpm_process_ctl.c | 294 static void fpm_pctl_check_request_timeout(struct timeval *now) /* {{{ */ in fpm_pctl_check_request_timeout() argument 324 static void fpm_pctl_perform_idle_server_maintenance(struct timeval *now) /* {{{ */ in fpm_pctl_perform_idle_server_maintenance() argument 377 struct timeval last, now; in fpm_pctl_perform_idle_server_maintenance() local 384 fpm_clock_get(&now); in fpm_pctl_perform_idle_server_maintenance() 385 if (last.tv_sec < now.tv_sec - wp->config->pm_process_idle_timeout) { in fpm_pctl_perform_idle_server_maintenance() 459 struct timeval now; in fpm_pctl_heartbeat() local 466 fpm_clock_get(&now); in fpm_pctl_heartbeat() 467 fpm_pctl_check_request_timeout(&now); in fpm_pctl_heartbeat() 484 struct timeval now; in fpm_pctl_perform_idle_server_maintenance_heartbeat() local 491 fpm_clock_get(&now); in fpm_pctl_perform_idle_server_maintenance_heartbeat() [all …]
|
/PHP-8.0/ |
H A D | UPGRADING | 24 . `match` is now a reserved keyword. 188 disabled function is now possible. 386 now be empty. 401 . The OCI-Lob class is now called OCILob, and the OCI-Collection class is now 433 now ignored. 599 to a weak DES hash now. 710 code is now allowed: 734 writing `Foo::BAR::$baz` is now allowed. 741 . `throw` can now be used as an expression. 791 . HashContext objects can now be serialized. [all …]
|
/PHP-8.0/ext/standard/tests/misc/ |
H A D | time_sleep_until_basic.phpt | 17 $now = microtime(true); 28 $tmp = round($now, 3); 29 $now = $tmp >= (int)$time ? $tmp : $tmp + .05; 33 if ($now + 0.002 >= $sleepUntil) { 38 echo "Now: ", $now, "\n";
|
/PHP-8.0/ext/standard/tests/array/ |
H A D | array_splice_basic.phpt | 14 // $input is now array("red", "green") 20 // $input is now array("red", "green") 26 // $input is now array("red", "yellow") 32 // $input is now array("red", "orange") 37 // $input is now array("red", "green", 44 // $input is now array("red", "green",
|
/PHP-8.0/ext/intl/tests/ |
H A D | calendar_getNow_basic.phpt | 12 $now = IntlCalendar::getNow(); 15 var_dump(abs($now - $proc_now) < 500);
|
/PHP-8.0/ext/xmlwriter/tests/ |
H A D | bug71536.phpt | 17 die('now'); // crashed with die() 24 now
|
/PHP-8.0/ext/standard/tests/file/windows_mb_path/ |
H A D | util.inc | 82 $now = get_basename_with_cp($full, $cp, false); 83 if ($now !== $basename) { 84 echo "expected '$basename', got '$now'\n"; 102 $now = get_basename_with_cp($full, $cp, false); 103 if ($now !== $basename) { 104 echo "expected '$basename', got '$now'\n";
|
H A D | bug54028_2.phpt | 30 $now = $prefix . $d; 31 var_dump(chdir($now));
|
/PHP-8.0/ext/pgsql/tests/ |
H A D | 80_bug39971.phpt | 2 Bug #39971 (8.0+) (pg_insert/pg_update do not allow now() to be used for timestamp fields) 19 $values = array('tm' => 'now()');
|
/PHP-8.0/ext/oci8/tests/ |
H A D | drcp_connection_class.phpt | 16 echo "Setting a new connection class now\n"; 28 Setting a new connection class now
|
/PHP-8.0/ext/reflection/tests/ |
H A D | bug64936.phpt | 16 token_get_all("<?php\n/**\n * Foo\n */"); // doc_comment compiler global now contains this Foo comm… 23 token_get_all("<?php\n/**\n * Foo\n */"); // doc_comment compiler global now contains this Foo comm…
|
/PHP-8.0/ext/imap/tests/ |
H A D | imap_open_with_cl_expunge.phpt | 26 echo "There are now " . imap_num_msg($stream_id) . " msgs in mailbox '$mailbox'\n"; 42 There are now 0 msgs in mailbox '%sINBOX.phpttestimapopenwithclexpunge'
|
H A D | imap_reopen_with_cl_expunge.phpt | 30 echo "There are now " . imap_num_msg($stream_id) . " msgs in mailbox '$mailbox'\n"; 47 There are now 0 msgs in mailbox '%sINBOX.phpttestimapreopenwithclexpunge'
|
/PHP-8.0/tests/output/ |
H A D | bug60322.phpt | 2 Bug #60322 (ob_get_clean() now raises an E_NOTICE if no buffers exist)
|
/PHP-8.0/ext/standard/tests/general_functions/ |
H A D | isset_basic2.phpt | 30 echo "..now set\n"; 51 ..now set
|
/PHP-8.0/ext/pdo_mysql/tests/ |
H A D | pdo_mysql_stmt_fetch_serialize_simple.phpt | 43 printf("\nAnd now magic PDO using fetchAll(PDO::FETCH_CLASS|PDO::FETCH_SERIALIZE)...\n"); 57 … printf("\nAnd now PDO using setFetchMode(PDO::FETCH:CLASS|PDO::FETCH_SERIALIZE) + fetch()...\n"); 79 And now magic PDO using fetchAll(PDO::FETCH_CLASS|PDO::FETCH_SERIALIZE)... 87 And now PDO using setFetchMode(PDO::FETCH:CLASS|PDO::FETCH_SERIALIZE) + fetch()...
|
/PHP-8.0/Zend/tests/ |
H A D | errmsg_024.phpt | 2 No more errmsg: can now change initial value of property
|