Home
last modified time | relevance | path

Searched refs:string1 (Results 1 – 15 of 15) sorted by relevance

/PHP-7.3/ext/pdo_oci/tests/
H A Dbug60994.phpt30 $string1 = 'abc' . str_repeat('j', 8187) . 'xyz'; // 8193 chars total works fine here (even 1 milli…
32 $insert->bindParam(':data', $string1, \PDO::PARAM_STR, strlen($string1)); // length in bytes
40 echo 'size of string1 is ', strlen($string1), ' bytes, ', mb_strlen($string1), ' chars.', PHP_EOL;
99 size of string1 is 1000006 bytes, 1000006 chars.
/PHP-7.3/ext/standard/tests/strings/
H A Daddcslashes_002.phpt15 class string1
21 $obj = new string1;
H A Dtrim1.phpt38 class string1
44 $obj = new string1;
H A Drtrim.phpt30 class string1 {
35 $obj = new string1;
H A Dstrlen.phpt87 $string1 = get_resource_type($file1);
90 /* $string1 is of "stream" type */
91 var_dump(strlen($string1)); // int(6)
146 strlen("string1", "string2");
H A Ducfirst.phpt77 $string1 = get_resource_type($file1);
80 /* $string1 is of "stream" type */
81 var_dump(ucfirst($string1));
H A Dlcfirst.phpt106 $string1 = get_resource_type($file1);
109 /* $string1 is of "stream" type */
110 var_dump(lcfirst($string1));
H A Dstrcmp.phpt41 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 Dstrcasecmp.phpt41 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 Dexplode1.phpt72 class string1 {
77 $obj = new string1;
/PHP-7.3/ext/pcre/tests/
H A Dpreg_quote_basic.phpt13 $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.3/ext/oci8/tests/
H A Dbug70700.phpt36 $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.3/ext/standard/tests/array/
H A Darray_flip_variation3.phpt41 'string_value1' => 'string1',
89 ["string1"]=>
/PHP-7.3/Zend/tests/
H A Dget_defined_vars.phpt14 $assoc_array = array( 'a'=>97, 'c'=>99, 'A'=>65, 'C'=>67, 1=>"string1" ); //associative array
96 string(7) "string1"
/PHP-7.3/ext/pdo_sqlite/
H A Dsqlite_driver.c469 int string1_len, const void *string1, in php_sqlite3_collation_callback() argument
483 ZVAL_STRINGL(&zargs[0], (char *) string1, string1_len); in php_sqlite3_collation_callback()

Completed in 32 milliseconds