Searched refs:string2 (Results 1 – 12 of 12) sorted by relevance
/PHP-7.2/ext/pdo_oci/tests/ |
H A D | bug60994.phpt | 48 $string2 = 'abc' . str_repeat('£', 8187) . 'xyz'; // 8193 chars total is when it breaks 50 $insert->bindParam(':data', $string2, \PDO::PARAM_STR, strlen($string2)); // length in bytes 58 echo 'size of string2 is ', strlen($string2), ' bytes, ', mb_strlen($string2), ' chars.', PHP_EOL; 106 size of string2 is 16380 bytes, 8193 chars.
|
/PHP-7.2/ext/oci8/tests/ |
H A D | bug70700.phpt | 67 $string2 = 'abc' . str_repeat('£', 4094) . 'xyz'; 71 $desc->writeTemporary($string2, OCI_TEMP_CLOB); 73 $desc->save($string2); 91 echo 'size of string2 is ', strlen($string2), ' bytes, ', mb_strlen($string2), ' chars.', PHP_EOL; 165 size of string2 is 8194 bytes, 4100 chars.
|
/PHP-7.2/ext/standard/tests/array/ |
H A D | array_flip_variation3.phpt | 52 'string_value2' => "string2", 103 ["string2"]=>
|
/PHP-7.2/Zend/tests/ |
H A D | get_defined_vars.phpt | 20 var $string = "string2"; 103 string(7) "string2"
|
/PHP-7.2/ext/standard/tests/strings/ |
H A D | strlen.phpt | 88 $string2 = (int)get_resource_type($file1); // converting stream type to int 93 /* $string2 holds a value of "int(0)" */ 94 var_dump(strlen($string2)); // int(1) 146 strlen("string1", "string2");
|
H A D | ucfirst.phpt | 78 $string2 = (int)get_resource_type($file1); // converting stream type to int 83 /* $string2 holds a value of "int(0)" */ 84 var_dump(ucfirst($string2));
|
H A D | lcfirst.phpt | 107 $string2 = (int)get_resource_type($file1); // converting stream type to int 112 /* $string2 holds a value of "int(0)" */ 113 var_dump(lcfirst($string2));
|
H A D | strcmp.phpt | 48 class string2 { 53 $obj_string2 = new string2; 73 $string2 = get_resource_type($file2); 76 /* string1 and string2 of same "stream" type */ 77 var_dump(strcmp($string1, $string2)); // int(0)
|
H A D | strcasecmp.phpt | 48 class string2 { 53 $obj_string2 = new string2; 73 $string2 = get_resource_type($file2); 76 /* string1 and string2 of same "stream" type */ 77 var_dump(strcasecmp($string1, $string2)); // int(0)
|
H A D | chunk_split_variation12.phpt | 99 …gng \k escaThis is simple heredoc stringpe char 22This is simple heredoc string2.This is simple he…
|
/PHP-7.2/ext/mbstring/ |
H A D | README_PHP3-i18n-ja | 560 o int = mbstrpos(string1, string2) 561 o int = mbstrpos(string1, string2, start) 562 o int = mbstrpos(string1, string2, start, encoding) 574 o int = mbstrrpos(string1, string2) 575 o int = mbstrrpos(string1, string2, encoding)
|
/PHP-7.2/ext/pdo_sqlite/ |
H A D | sqlite_driver.c | 473 int string2_len, const void *string2) in php_sqlite3_collation_callback() argument 487 ZVAL_STRINGL(&zargs[1], (char *) string2, string2_len); in php_sqlite3_collation_callback()
|
Completed in 25 milliseconds