/PHP-8.3/ext/mbstring/tests/ |
H A D | simpletest.phpt | 15 $s2 = "����ʸ����Ϣ�뤵��Ƥ���Ϥ���"; 18 echo "echo: ".$s1.$s2."\n"; 19 print("print: ".$s1.$s2."\n"); 20 printf("printf: %s%s\n",$s1, $s2); 21 echo sprintf("sprintf: %s%s\n",$s1, $s2); 24 $s3 = $s1.$s2."\n";
|
H A D | mb_convert_variables.phpt | 46 $s2 = $euc_jp; 50 echo bin2hex("$s1$s2$s3"), "\n"; // Converted to EUC-JP 54 $a = array($s3, $s2, $s1); 60 $a = array($s1, $s2, $s3); 71 public $s2; 79 $this->s2 = $euc_jp; 87 public $s2; 95 $this->s2 = $euc_jp; 116 $s2 = $euc_jp; 118 $a = array($s1, $s2, $s3); [all …]
|
H A D | common.inc | 9 's2' => 'English Text' 15 public $s2 = 'English Text';
|
/PHP-8.3/ext/oci8/tests/ |
H A D | drcp_functions.inc | 41 $s2 = oci_parse($conn,$sel_stmt); 42 oci_execute($s2,OCI_DEFAULT); 43 while(oci_fetch($s2)) { 44 echo "The value of DEPT for id 105 is ".oci_result($s2,1)."\n"; 51 $s2 = oci_parse($conn, $sel_stmt); 52 oci_define_by_name($s2,'f1',$ret_num); 53 oci_execute($s2); 54 while(oci_fetch($s2)) { 55 echo " The value of the package variable is ".oci_result($s2,1)."\n"; 89 $s2 = oci_parse($c, $package_body); [all …]
|
H A D | imp_res_insert.phpt | 60 $s2 = oci_parse($c2, "select * from imp_res_insert_tab order by 1"); 61 oci_execute($s2, OCI_NO_AUTO_COMMIT); 62 oci_fetch_all($s2, $res); 71 $s2 = oci_parse($c2, "select * from imp_res_insert_tab order by 1"); 72 oci_execute($s2, OCI_NO_AUTO_COMMIT); 73 oci_fetch_all($s2, $res); 82 $s2 = oci_parse($c2, "select * from imp_res_insert_tab order by 1"); 83 oci_execute($s2, OCI_NO_AUTO_COMMIT); 84 oci_fetch_all($s2, $res); 93 oci_execute($s2, OCI_NO_AUTO_COMMIT); [all …]
|
H A D | conn_attr.inc | 56 $s2 = oci_parse($conn,$sel_stmt); 57 oci_execute($s2,OCI_DEFAULT); 58 while (oci_fetch($s2)) { 59 echo "The value of ".$attr ." is ".oci_result($s2,1)."\n"; 120 $s2 = oci_parse($conn,$sel_stmt); 121 oci_execute($s2,OCI_DEFAULT); 122 while (oci_fetch($s2)) { 131 $s2 = oci_parse($conn,$sel_stmt); 132 oci_execute($s2,OCI_DEFAULT); 133 while (oci_fetch($s2)) { [all …]
|
H A D | bug38173.phpt | 22 $s2 = oci_parse($c, $drop_2); 24 @oci_execute($s2); 27 $s2 = oci_parse($c, $create_2); 29 oci_execute($s2); 62 $s2 = oci_parse($c, $drop_2); 64 @oci_execute($s2);
|
H A D | pecl_bug8816.phpt | 22 $s2 = oci_parse($c, $drop_2); 24 @oci_execute($s2); 27 $s2 = oci_parse($c, $create_2); 29 oci_execute($s2); 66 $s2 = oci_parse($c, $drop_2); 68 @oci_execute($s2);
|
H A D | define0.phpt | 42 $s2 = oci_parse($c, 'select string from define0_tab'); 43 oci_define_by_name($s2, 'STRING', $string); 44 oci_execute($s2); 45 while (oci_fetch($s2)) {
|
H A D | imp_res_get_4.phpt | 71 $s2 = oci_get_implicit_resultset($s); 74 $row = oci_fetch_array($s2, OCI_ASSOC+OCI_RETURN_NULLS); 78 $row = oci_fetch_array($s2, OCI_ASSOC+OCI_RETURN_NULLS); 82 $row = oci_fetch_array($s2, OCI_ASSOC+OCI_RETURN_NULLS); 90 $s2 = oci_get_implicit_resultset($s); 93 $row = oci_fetch_array($s2, OCI_ASSOC+OCI_RETURN_NULLS); 97 $row = oci_fetch_array($s2, OCI_ASSOC+OCI_RETURN_NULLS); 101 $row = oci_fetch_array($s2, OCI_ASSOC+OCI_RETURN_NULLS); 105 $row = oci_fetch_array($s2, OCI_ASSOC+OCI_RETURN_NULLS); 109 $row = oci_fetch_array($s2, OCI_ASSOC+OCI_RETURN_NULLS);
|
/PHP-8.3/Zend/ |
H A D | zend_config.w32.h | 48 #define strcasecmp(s1, s2) _stricmp(s1, s2) argument 49 #define strncasecmp(s1, s2, n) _strnicmp(s1, s2, n) argument
|
/PHP-8.3/ext/reflection/tests/ |
H A D | bug79062.phpt | 13 private $s2 = <<<'STRING' 24 $s2 = $ref->getProperty('s2'); 25 var_dump($s2->getDocComment()); 28 var_dump($s2->getDocComment());
|
/PHP-8.3/ext/phar/ |
H A D | makestub.php | 29 $s2 = substr($s, strlen($s1) + strlen('index.php')); variable 30 $s2 = substr($s2, 0, strpos($s2, 'XXXX')); variable 31 $s3 = substr($s, strlen($s2) + 4 + strlen($s1) + strlen('index.php')); 84 $stub .= "\tstatic const char newstub2[] = \"" . $s2 . "\";
|
/PHP-8.3/ext/standard/tests/file/ |
H A D | fclose_variation1.phpt | 7 $s2 = $s; 8 separate_zval($s2); 11 echo fread($s2, strlen("<?php"));
|
/PHP-8.3/Zend/tests/ |
H A D | self_mod.phpt | 8 $s2 = "45345some"; 20 $s2 %= 33; 21 var_dump($s2);
|
H A D | shift_001.phpt | 8 $s2 = "45345some"; 20 $s2 <<= 3; 21 var_dump($s2);
|
H A D | shift_002.phpt | 8 $s2 = "45345some"; 20 $s2 >>= 3; 21 var_dump($s2);
|
H A D | self_or.phpt | 8 $s2 = "45345some"; 22 $s2 |= 33; 23 var_dump($s2);
|
H A D | self_xor.phpt | 8 $s2 = "45345some"; 22 $s2 ^= 33; 23 var_dump($s2);
|
H A D | self_and.phpt | 8 $s2 = "45345some"; 22 $s2 &= 33; 23 var_dump($s2);
|
H A D | add_006.phpt | 10 $s2 = "876222numeric"; 20 $c = $i + $s2; 36 $c = $s2 + $i;
|
/PHP-8.3/ext/spl/tests/ |
H A D | bug45826.phpt | 15 $s2 = $o->serialize(); 17 var_dump($s2); 25 $o2->unserialize($s2); 32 unset($o,$x,$s1,$s2,$o1,$o2); 53 $s2 = $o->__serialize(); 55 var_dump($s2); 63 $o2->__unserialize($s2);
|
/PHP-8.3/ext/soap/tests/interop/Round4/GroupH/ |
H A D | round4_groupH_complex_rpcenc.inc | 16 function echoMultipleFaults1($which, $s1, $s2) { 18 …return new SoapFault("Server", "Fault in response to 'echoMultipleFaults1'.", null, $s2, "ComplexF… 24 function echoMultipleFaults2($which, $s1, $s2, $s3) { 26 …return new SoapFault("Server", "Fault in response to 'echoMultipleFaults2'.", null, $s2, "ComplexF…
|
/PHP-8.3/ext/opcache/tests/opt/ |
H A D | dce_001.phpt | 14 function foo(string $s1, string $s2, string $s3, string $s4) { 15 $x = ($s1 . $s2) . ($s3 . $s4); 32 0001 CV1($s2) = RECV 2
|
/PHP-8.3/ext/standard/tests/strings/ |
H A D | htmlspecialchars_basic.phpt | 8 $s2 = "&&abc<>\"&\n"; 14 echo "Test 2: " . htmlspecialchars ($s2); 19 echo "Test 7: " . htmlspecialchars ($s2,ENT_NOQUOTES); 24 echo "Test 12: " . htmlspecialchars ($s2,ENT_COMPAT); 29 echo "Test 17: " . htmlspecialchars ($s2,ENT_QUOTES); 36 echo "Test 22: " . htmlspecialchars ($s2,ENT_COMPAT, "ISO-8859-1"); 42 $s2 = ""&123<456"\n"; 45 echo "Test 26: " . htmlspecialchars ($s2,ENT_NOQUOTES, "ISO-8859-1", false); 50 echo "Test 29: " . htmlspecialchars ($s2, ENT_NOQUOTES, "ISO-8859-1", true);
|