Home
last modified time | relevance | path

Searched refs:s1 (Results 26 – 50 of 139) sorted by last modified time

123456

/PHP-7.4/ext/standard/tests/strings/
H A Dstrnatcasecmp_basic.phpt7 /* Prototype : int strnatcasecmp(string s1, string s2)
H A Dstrnatcasecmp_variation1.phpt7 /* Prototype : int strnatcasecmp(string s1, string s2)
H A Dhtmlspecialchars_basic.phpt12 $s1 = "abc<>\"&\n";
18 echo "Test 1: " . htmlspecialchars ($s1);
23 echo "Test 6: " . htmlspecialchars ($s1,ENT_NOQUOTES);
28 echo "Test 11: " . htmlspecialchars ($s1,ENT_COMPAT);
33 echo "Test 16: " . htmlspecialchars ($s1,ENT_QUOTES);
40 echo "Test 21: " . htmlspecialchars ($s1,ENT_NOQUOTES, "ISO-8859-1");
46 $s1 = "&quot;&amp;xyz&gt;abc&quot;\n";
49 echo "Test 25: " . htmlspecialchars ($s1,ENT_NOQUOTES, "ISO-8859-1", false);
54 echo "Test 28: " . htmlspecialchars ($s1, ENT_NOQUOTES, "ISO-8859-1", true);
H A Dparse_str_basic1.phpt14 $s1 = "first=val1&second=val2&third=val3";
15 var_dump(parse_str($s1));
19 $s1 = "first=val1&second=val2&third=val3";
20 var_dump(parse_str($s1, $res1));
25 $s1 = "first=val1&second=val2&third=val3";
26 var_dump(parse_str($s1, $res2));
31 var_dump(parse_str($s1, $res3_array));
H A Dparse_str_basic2.phpt14 $s1 = "first=val1/second=val2/third=val3";
15 var_dump(parse_str($s1, $result));
H A Dparse_str_basic3.phpt17 var_dump(parse_str($s1));
37 $s1 = "a[]=123&a[]=false&a[]=last";
38 var_dump(parse_str($s1));
43 $s1 = "a=999";
44 parse_str($s1);
49 parse_str($s1, $res);
54 var_dump(parse_str($s1, $res));
58 $s1 = "sum=10%5c2%3d5";
59 var_dump(parse_str($s1, $res));
64 var_dump(parse_str($s1, $res));
[all …]
/PHP-7.4/ext/standard/
H A Dmt_rand.c167 register uint32_t s1; in php_mt_rand() local
178 s1 = *BG(next)++; in php_mt_rand()
179 s1 ^= (s1 >> 11); in php_mt_rand()
180 s1 ^= (s1 << 7) & 0x9d2c5680U; in php_mt_rand()
181 s1 ^= (s1 << 15) & 0xefc60000U; in php_mt_rand()
182 return ( s1 ^ (s1 >> 18) ); in php_mt_rand()
H A Dlevenshtein.c29 static zend_long reference_levdist(const char *s1, size_t l1, const char *s2, size_t l2, zend_long … in reference_levdist() argument
55 c0 = p1[i2] + ((s1[i1] == s2[i2]) ? 0 : cost_rep); in reference_levdist()
H A Dphp_lcg.h25 int32_t s1; member
H A Dphp_string.h137 PHPAPI size_t php_strspn(char *s1, char *s2, char *s1_end, char *s2_end);
138 PHPAPI size_t php_strcspn(char *s1, char *s2, char *s1_end, char *s2_end);
H A Dlcg.c62 MODMULT(53668, 40014, 12211, 2147483563L, LCG(s1)); in php_combined_lcg()
65 z = LCG(s1) - LCG(s2); in php_combined_lcg()
79 LCG(s1) = tv.tv_sec ^ (tv.tv_usec<<11); in lcg_seed()
81 LCG(s1) = 1; in lcg_seed()
/PHP-7.4/ext/standard/html_tables/
H A Dhtml_table_gen.php525 $s1 = (hexdec($el[1]) & 0xFFF000) >> 12; variable
529 $mstable[$s1][$s2][$s3] = "";
531 $mstable[$s1][$s2][$s3] = $el[0];
/PHP-7.4/ext/spl/tests/
H A DSplObjectStorage_getHash.phpt18 $s1 = new MySplObjectStorage;
19 $s1[$o1] = "foo";
/PHP-7.4/ext/oci8/tests/
H A Dimp_res_field.phpt87 while (($s1 = oci_get_implicit_resultset($s))) {
88 print_fields($s1);
95 while (($s1 = oci_get_implicit_resultset($s))) {
97 print_fields($s1);
98 while (($r = oci_fetch_row($s1)) !== false) {
107 while (($s1 = oci_get_implicit_resultset($s))) {
109 while (($r = oci_fetch_row($s1)) !== false) {
111 print_fields($s1);
H A Dimp_res_get_1.phpt58 while (($s1 = oci_get_implicit_resultset($s))) {
59 while (($row = oci_fetch_array($s1, OCI_ASSOC+OCI_RETURN_NULLS)) != false) {
70 while (($s1 = oci_get_implicit_resultset($s))) {
71 oci_execute($s1); // no op
72 while (($row = oci_fetch_array($s1, OCI_ASSOC+OCI_RETURN_NULLS)) != false) {
H A Dimp_res_get_2.phpt60 $s1 = oci_get_implicit_resultset($s);
61 while (($row = oci_fetch_array($s1, OCI_ASSOC+OCI_RETURN_NULLS))) {
H A Dimp_res_get_3.phpt63 while (($s1 = oci_get_implicit_resultset($s))) {
64 while (($row = oci_fetch_array($s1, OCI_ASSOC+OCI_RETURN_NULLS)) != false) {
H A Dimp_res_get_4.phpt68 $s1 = oci_get_implicit_resultset($s);
70 $row = oci_fetch_array($s1, OCI_ASSOC+OCI_RETURN_NULLS);
74 $row = oci_fetch_array($s1, OCI_ASSOC+OCI_RETURN_NULLS);
78 $row = oci_fetch_array($s1, OCI_ASSOC+OCI_RETURN_NULLS);
87 $s1 = oci_get_implicit_resultset($s);
89 $row = oci_fetch_array($s1, OCI_ASSOC+OCI_RETURN_NULLS);
93 $row = oci_fetch_array($s1, OCI_ASSOC+OCI_RETURN_NULLS);
97 $row = oci_fetch_array($s1, OCI_ASSOC+OCI_RETURN_NULLS);
101 $row = oci_fetch_array($s1, OCI_ASSOC+OCI_RETURN_NULLS);
105 $row = oci_fetch_array($s1, OCI_ASSOC+OCI_RETURN_NULLS);
H A Dimp_res_get_5.phpt48 while (($s1 = oci_get_implicit_resultset($s))) { // $s1 is never used again so its results are lost
49 …row = oci_fetch_array($s, OCI_ASSOC+OCI_RETURN_NULLS)) != false) { // use parent $s instead of $s1
58 $s1 = oci_get_implicit_resultset($s);
59 while (($row = oci_fetch_row($s1)) != false) {
70 $s1 = oci_get_implicit_resultset($s);
71 while (($row = oci_fetch_row($s1)) != false) {
76 $s1 = oci_get_implicit_resultset($s);
77 while (($row = oci_fetch_row($s1)) != false) {
88 $s1 = oci_get_implicit_resultset($s);
89 $s1 = oci_get_implicit_resultset($s);
H A Dimp_res_get_all.phpt39 $s1 = oci_get_implicit_resultset($s);
40 oci_fetch_all($s1, $res);
54 while (($s1 = oci_get_implicit_resultset($s))) {
55 $r = oci_fetch_all($s1, $res);
H A Dimp_res_get_cancel.phpt38 while (($s1 = oci_get_implicit_resultset($s))) {
39 while (($row = oci_fetch_array($s1, OCI_ASSOC+OCI_RETURN_NULLS)) != false) {
44 oci_cancel($s1);
H A Dimp_res_get_close_1.phpt43 while (($s1 = oci_get_implicit_resultset($s))) {
44 while (($row = oci_fetch_array($s1, OCI_ASSOC+OCI_RETURN_NULLS)) != false) {
49 oci_free_statement($s1); // Free the implicit result handle
H A Dimp_res_get_close_2.phpt43 while (($s1 = oci_get_implicit_resultset($s))) {
44 while (($row = oci_fetch_array($s1, OCI_ASSOC+OCI_RETURN_NULLS)) != false) {
H A Dimp_res_get_close_3.phpt43 while (($s1 = oci_get_implicit_resultset($s))) {
44 while (($row = oci_fetch_array($s1, OCI_ASSOC+OCI_RETURN_NULLS)) != false) {
50 oci_free_statement($s1);
H A Dimp_res_get_cursor.phpt75 while (($s1 = oci_get_implicit_resultset($s))) {
76 do_fetch($s1);

Completed in 31 milliseconds

123456