Home
last modified time | relevance | path

Searched refs:time (Results 101 – 125 of 698) sorted by relevance

12345678910>>...28

/PHP-5.6/ext/sqlite3/tests/
H A Dsqlite3_04_update.phpt9 define('TIMENOW', time());
12 var_dump($db->exec('CREATE TABLE test (time INTEGER, id STRING)'));
15 var_dump($db->exec("INSERT INTO test (time, id) VALUES (" . TIMENOW . ", 'a')"));
16 var_dump($db->exec("INSERT INTO test (time, id) VALUES (" . TIMENOW . ", 'b')"));
H A Dsqlite3_05_delete.phpt9 define('TIMENOW', time());
12 var_dump($db->exec('CREATE TABLE test (time INTEGER, id STRING)'));
15 var_dump($db->exec("INSERT INTO test (time, id) VALUES (" . TIMENOW . ", 'a')"));
16 var_dump($db->exec("INSERT INTO test (time, id) VALUES (" . TIMENOW . ", 'b')"));
H A Dsqlite3_28_clear_bindings.phpt9 define('TIMENOW', time());
12 var_dump($db->exec('CREATE TABLE test (time INTEGER, id STRING)'));
15 var_dump($db->exec("INSERT INTO test (time, id) VALUES (" . TIMENOW . ", 'a')"));
16 var_dump($db->exec("INSERT INTO test (time, id) VALUES (" . TIMENOW . ", 'b')"));
H A Dsqlite3_prepared_stmt_clear_with_params.phpt11 define('TIMENOW', time());
13 $db->exec('CREATE TABLE test (time INTEGER, id STRING)');
15 var_dump($db->exec("INSERT INTO test (time, id) VALUES (" . TIMENOW . ", 'b')"));
/PHP-5.6/ext/zip/examples/
H A Dcreate.php17 $zip->addFromString("testfilephp.txt" . time(), "#1 This is a test string added as testfilephp.txt.…
18 $zip->addFromString("testfilephp2.txt" . time(), "#2 This is a test string added as testfilephp2.tx…
/PHP-5.6/ext/date/tests/
H A DDateTime_extends_basic1.phpt6 //Set the default time zone
28 echo "\n -- modify date and time --\n";
45 -- modify date and time --
H A Ddate-time-modify-times.phpt2 Test for DateTime::modify() with absolute time statements
9 'october 23:00', // October 23rd, with a broken time
18 'october 23:00', // October 23rd, with a broken time
H A Dbug50055.phpt2 Bug #50555 (DateTime::sub() allows 'relative' time modifications).
26 Warning: date_sub(): Only non-special relative time specifications are supported for subtraction in…
30 Warning: date_sub(): Only non-special relative time specifications are supported for subtraction in…
H A Dbug52430.phpt2 Bug #52430 (date_parse parse 24:xx:xx as valid time)
28 string(27) "The parsed time was invalid"
H A Dbug35425.phpt8 $time = mktime(1,1,1,1,1,2005);
10 var_dump(idate($v, $time));
H A DDateTime_setTime_basic1.phpt6 * Description: Resets the current time of the DateTime object to a different time.
11 //Set the default time zone
H A Ddate_time_set_basic1.phpt6 * Description: Resets the current time of the DateTime object to a different time.
11 //Set the default time zone
/PHP-5.6/ext/intl/tests/
H A Dcalendar_setTimeZone_error2.phpt2 IntlCalendar::setTimeZone(): valid time zones for DateTime but not ICU
25 Warning: IntlCalendar::setTimeZone(): intlcal_set_time_zone: time zone id 'WEST' extracted from ext…
28 Warning: IntlCalendar::setTimeZone(): intlcal_set_time_zone: object has an time zone offset that's …
H A Dtimezone_getOffset_error.phpt13 var_dump($tz->getOffset(time()*1000, true, $a));
14 var_dump($tz->getOffset(time()*1000, true, $a, $a, $a));
16 intltz_get_offset(null, time()*1000, false, $a, $a);
H A Dcalendar_getTime_basic.phpt20 $time = strtotime('2012-02-29 00:00:00 +0000');
22 var_dump((float)$time*1000, $intlcal->getTime());
H A Dmsgfmt_format_simple_types_numeric_strings.phpt23 time {g,time}
53 time %d:%d:05 PM
/PHP-5.6/ext/standard/
H A Dphp_rand.h51 #define GENERATE_SEED() (((long) (time(0) * GetCurrentProcessId())) ^ ((long) (1000000.0 * php_comb…
53 #define GENERATE_SEED() (((long) (time(0) * getpid())) ^ ((long) (1000000.0 * php_combined_lcg(TSRM…
/PHP-5.6/tests/func/
H A D004.phpt25 echo "Calling function for the first time...\n";
29 echo "Calling the function for the second time...\n";
40 Calling function for the first time...
56 Calling the function for the second time...
/PHP-5.6/ext/standard/tests/misc/
H A Dtime_sleep_until_basic.phpt14 $time = microtime(true) + 2;
15 var_dump(time_sleep_until( (int)$time ));
28 var_dump($now >= (int)$time);
/PHP-5.6/ext/date/lib/
H A Dparse_date.c118 #define TIMELIB_UNHAVE_TIME() { s->time->have_time = 0; s->time->h = 0; s->time->i = 0; s->time->s …
120 #define TIMELIB_UNHAVE_DATE() { s->time->have_date = 0; s->time->d = 0; s->time->m = 0; s->time->y …
20450 s->time->h = s->time->i = s->time->s = 0; in scan()
23874 …in.time->y = in.time->d = in.time->m = in.time->h = in.time->i = in.time->s = in.time->f = in.time in timelib_strtotime()
23908 if (in.time->have_time && !timelib_valid_time( in.time->h, in.time->i, in.time->s)) { in timelib_strtotime()
23912 if (in.time->have_date && !timelib_valid_date( in.time->y, in.time->m, in.time->d)) { in timelib_strtotime()
23943 time->h = time->i = time->s = 0; in timelib_time_reset_fields()
24145 s->time->h = s->time->i = s->time->s = 0; in timelib_parse_from_format()
24278 !timelib_valid_time( s->time->h, s->time->i, s->time->s)) { in timelib_parse_from_format()
24354 time.y, time.m, time.d, time.h, time.i, time.s, time.f, time.z, time.dst); in main()
[all …]
/PHP-5.6/ext/intl/common/
H A Dcommon_date.cpp53 ? ((php_date_obj*)object)->time->tz_info->name
59 ? -((php_date_obj*)object)->time->z
81 ? ((php_date_obj*)object)->time->tz_abbr
149 if (!datetime->time) {
157 if (!datetime->time->is_localtime) {
160 *tz = timezone_convert_datetimezone(datetime->time->zone_type,
/PHP-5.6/ext/sockets/tests/
H A Dsocket_select-wrongparams-1-win32.phpt19 $time = -1;
20 var_dump(socket_select($sockets, $write, $except, $time));
H A Dsocket_select-wrongparams-4.phpt22 $time = 0;
24 var_dump(socket_select($sockets, $write, $except, $time, $usec));
H A Dsocket_select-wrongparams-3.phpt22 $time = array();
23 var_dump(socket_select($sockets, $write, $except, $time));
/PHP-5.6/ext/mysqli/tests/
H A Dmysqli_constants_categories.phpt2 …tants exported by ext/mysqli - checking category - PHP bug not mysqli bug (check from time to time)

Completed in 53 milliseconds

12345678910>>...28