Home
last modified time | relevance | path

Searched refs:ss (Results 1 – 25 of 43) sorted by relevance

12

/PHP-7.4/ext/spl/tests/
H A DSplDoublyLinkedList_serialization.phpt10 var_dump($q, $ss = serialize($q), unserialize($ss));
17 var_dump($s, $ss = serialize($s), unserialize($ss));
H A Dbug49263.phpt13 $ss = serialize($s);
15 echo $ss."\n";
16 var_dump(unserialize($ss));
/PHP-7.4/ext/standard/tests/serialize/
H A Dbug69210.phpt28 $ss = @serialize($cs);
29 echo $ss . "\n";
34 var_dump(unserialize($ss));
/PHP-7.4/ext/sockets/
H A Dsockaddr_conv.c115 int php_set_inet46_addr(php_sockaddr_storage *ss, socklen_t *ss_len, char *string, php_socket *php_… in php_set_inet46_addr() argument
120 memcpy(ss, &t, sizeof t); in php_set_inet46_addr()
121 ss->ss_family = AF_INET; in php_set_inet46_addr()
130 memcpy(ss, &t, sizeof t); in php_set_inet46_addr()
131 ss->ss_family = AF_INET6; in php_set_inet46_addr()
H A Dsockaddr_conv.h29 int php_set_inet46_addr(php_sockaddr_storage *ss, socklen_t *ss_len, char *string, php_socket *php_…
/PHP-7.4/ext/intl/tests/
H A Ddateformat_get_set_pattern2.phpt16 'DD-MM-YYYY hh:mm:ss',
17 'yyyy-DDD.hh:mm:ss z',
62 Setting IntlDateFormatter with pattern = DD-MM-YYYY hh:mm:ss
63 After call to get_pattern : pattern= DD-MM-YYYY hh:mm:ss
68 Setting IntlDateFormatter with pattern = yyyy-DDD.hh:mm:ss z
69 After call to get_pattern : pattern= yyyy-DDD.hh:mm:ss z
H A Dbug74298.phpt15 'yyyy-MM-dd HH:mm:ss.SSSSSS'
24 'yyyy-MM-dd HH:mm:ss.SSSSSS'
H A Dresourcebundle_null_mandatory_args_variant2.phpt24 string(14) "h:mm:ss a zzzz"
25 string(13) "HH:mm:ss zzzz"
H A Dresourcebundle_null_mandatory_args.phpt23 string(14) "h:mm:ss a zzzz"
24 string(12) "H:mm:ss zzzz"
H A Dmsgfmt_millisecond_dates.phpt14 "On {0,time,yyyy-MM-dd G 'at' HH:mm:ss.SSS zzz} something odd happened");
H A Ddateformat_clone2.phpt20 ut_datefmt_set_pattern( $fmt , 'yyyy-DDD.hh:mm:ss z' );
H A Ddateformat_formatObject_datetime.phpt18 echo IntlDateFormatter::formatObject($dt, 'E y-MM-d HH,mm,ss.SSS v', "en-US"), "\n";
H A Ddateformat_formatObject_datetime_variant2.phpt18 echo IntlDateFormatter::formatObject($dt, 'E y-MM-d HH,mm,ss.SSS v', "en-US"), "\n";
H A Ddateformat_formatObject_datetime_variant5.phpt18 echo IntlDateFormatter::formatObject($dt, 'E y-MM-d HH,mm,ss.SSS v', "en-US"), "\n";
H A Ddateformat_formatObject_datetime_variant3.phpt19 echo IntlDateFormatter::formatObject($dt, 'E y-MM-d HH,mm,ss.SSS v', "en-US"), "\n";
H A Ddateformat_formatObject_datetime_variant4.phpt19 echo IntlDateFormatter::formatObject($dt, 'E y-MM-d HH,mm,ss.SSS v', "en-US"), "\n";
H A Ddateformat_formatObject_calendar.phpt18 echo IntlDateFormatter::formatObject($cal, 'E y-MM-d HH,mm,ss.SSS v', "en-US"), "\n";
H A Ddateformat_formatObject_calendar_variant2.phpt18 echo IntlDateFormatter::formatObject($cal, 'E y-MM-d HH,mm,ss.SSS v', "en-US"), "\n";
H A Ddateformat_formatObject_calendar_variant5.phpt18 echo IntlDateFormatter::formatObject($cal, 'E y-MM-d HH,mm,ss.SSS v', "en-US"), "\n";
/PHP-7.4/ext/date/tests/
H A Dbug73858.phpt10 $ss = 'february first day of last month midnight';
13 $s = new DateTime($ss);
18 $s = (new DateTime(null))->setTimestamp(strtotime($ss)); // verbose setup method
27 $s = (new DateTime(null))->setTimestamp(strtotime($ss)); // verbose setup method
32 $s = new DateTime($ss);
41 $s = new DateTime($ss);
52 $s = new DateTime($ss);
/PHP-7.4/ext/fileinfo/libmagic/
H A Dcdf.c303 assert(ss == sst->sst_ss); in cdf_check_stream()
321 ss * sst->sst_len, ss, sst->sst_len)); in cdf_check_stream_offset()
443 sat->sat_len, ss)); in cdf_read_sat()
451 if (cdf_read_sector(info, sat->sat_tab, ss * i, ss, h, in cdf_read_sat()
470 CAST(ssize_t, ss)) { in cdf_read_sat()
484 if (cdf_read_sector(info, sat->sat_tab, ss * i, ss, h, in cdf_read_sat()
553 scn->sst_ss = ss; in cdf_read_long_sector_chain()
576 if ((nr = cdf_read_sector(info, scn->sst_tab, i * ss, ss, h, in cdf_read_long_sector_chain()
602 scn->sst_ss = ss; in cdf_read_short_sector_chain()
622 if (cdf_read_short_sector(sst, scn->sst_tab, i * ss, ss, h, in cdf_read_short_sector_chain()
[all …]
/PHP-7.4/ext/reflection/tests/
H A DReflectionProperty_isInitialized.phpt8 public static ?string $ss;
21 var_dump((new ReflectionProperty(A::class, 'ss'))->isInitialized());
/PHP-7.4/ext/mysqli/tests/
H A D059.phpt24 mysqli_stmt_bind_param($stmt, "ss", $a, $b);
H A D021.phpt21 mysqli_stmt_bind_param($stmt, "ss", $q1, $q2);
/PHP-7.4/main/
H A Dphp_variables.c627 char *ss, *space; in php_build_argv() local
645 ss = s; in php_build_argv()
646 while (ss) { in php_build_argv()
647 space = strchr(ss, '+'); in php_build_argv()
652 ZVAL_STRING(&tmp, ss); in php_build_argv()
659 ss = space + 1; in php_build_argv()
661 ss = space; in php_build_argv()

Completed in 71 milliseconds

12