Searched refs:string1 (Results 1 – 16 of 16) sorted by relevance
/PHP-7.2/ext/pdo_oci/tests/ |
H A D | bug60994.phpt | 31 $string1 = 'abc' . str_repeat('j', 8187) . 'xyz'; // 8193 chars total works fine here (even 1 milli… 33 $insert->bindParam(':data', $string1, \PDO::PARAM_STR, strlen($string1)); // length in bytes 41 echo 'size of string1 is ', strlen($string1), ' bytes, ', mb_strlen($string1), ' chars.', PHP_EOL; 100 size of string1 is 1000006 bytes, 1000006 chars.
|
/PHP-7.2/ext/standard/tests/strings/ |
H A D | addcslashes_002.phpt | 15 class string1 21 $obj = new string1;
|
H A D | trim1.phpt | 38 class string1 44 $obj = new string1;
|
H A D | rtrim.phpt | 30 class string1 { 35 $obj = new string1;
|
H A D | strlen.phpt | 87 $string1 = get_resource_type($file1); 90 /* $string1 is of "stream" type */ 91 var_dump(strlen($string1)); // int(6) 146 strlen("string1", "string2");
|
H A D | ucfirst.phpt | 77 $string1 = get_resource_type($file1); 80 /* $string1 is of "stream" type */ 81 var_dump(ucfirst($string1));
|
H A D | lcfirst.phpt | 106 $string1 = get_resource_type($file1); 109 /* $string1 is of "stream" type */ 110 var_dump(lcfirst($string1));
|
H A D | strcmp.phpt | 41 class string1 { 46 $obj_string1 = new string1; 72 $string1 = get_resource_type($file1); 76 /* string1 and string2 of same "stream" type */ 77 var_dump(strcmp($string1, $string2)); // int(0) 79 /* string1 is of "stream" type & string3 is of "int" type */ 80 var_dump(strcmp($string1, $string3)); // int(1)
|
H A D | strcasecmp.phpt | 41 class string1 { 46 $obj_string1 = new string1; 72 $string1 = get_resource_type($file1); 76 /* string1 and string2 of same "stream" type */ 77 var_dump(strcasecmp($string1, $string2)); // int(0) 79 /* string1 is of "stream" type & string3 is of "int" type */ 80 var_dump(strcasecmp($string1, $string3)); // int(1)
|
H A D | explode1.phpt | 72 class string1 { 77 $obj = new string1;
|
/PHP-7.2/ext/pcre/tests/ |
H A D | preg_quote_basic.phpt | 13 $string1 = 'testing - /this *-has \ metacharacters^ in $ should work'; 14 …tch('/^[tT]\w{6} - ' . preg_quote($string_before, '/') . ' [a-z]*\s*work$/', $string1, $matches1));
|
/PHP-7.2/ext/oci8/tests/ |
H A D | bug70700.phpt | 36 $string1 = 'abc' . str_repeat('j', 1000000) . 'xyz'; 40 $desc->writeTemporary($string1, OCI_TEMP_CLOB); 42 $desc->save($string1); 60 echo 'size of string1 is ', strlen($string1), ' bytes, ', mb_strlen($string1), ' chars.', PHP_EOL; 159 size of string1 is 1000006 bytes, 1000006 chars.
|
/PHP-7.2/ext/standard/tests/array/ |
H A D | array_flip_variation3.phpt | 41 'string_value1' => 'string1', 89 ["string1"]=>
|
/PHP-7.2/Zend/tests/ |
H A D | get_defined_vars.phpt | 14 $assoc_array = array( 'a'=>97, 'c'=>99, 'A'=>65, 'C'=>67, 1=>"string1" ); //associative array 96 string(7) "string1"
|
/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 | 472 int string1_len, const void *string1, in php_sqlite3_collation_callback() argument 486 ZVAL_STRINGL(&zargs[0], (char *) string1, string1_len); in php_sqlite3_collation_callback()
|
Completed in 27 milliseconds