Home
last modified time | relevance | path

Searched refs:offset (Results 176 – 200 of 649) sorted by relevance

12345678910>>...26

/PHP-5.5/ext/mbstring/tests/
H A Dmb_strripos_error1.phpt10 /* Prototype : int mb_strripos(string haystack, string needle [, int offset [, string encoding]])
27 $offset = 10;
30 var_dump( mb_strripos($haystack, $needle, $offset, $encoding, $extra_arg) );
/PHP-5.5/ext/date/lib/
H A Dtimelib_structs.h82 int32_t offset; member
93 int32_t offset; member
156 int32_t offset; member
/PHP-5.5/ext/iconv/tests/
H A Diconv_strpos_error1.phpt10 /* Prototype : int iconv_strpos(string haystack, string needle [, int offset [, string charset]])
26 $offset = 10;
29 var_dump( iconv_strpos($haystack, $needle, $offset, $encoding, $extra_arg) );
/PHP-5.5/ext/standard/tests/array/
H A Darray_combine_variation4.phpt93 Warning: Illegal offset type in %s on line %d
95 Warning: Illegal offset type in %s on line %d
97 Warning: Illegal offset type in %s on line %d
99 Warning: Illegal offset type in %s on line %d
101 Warning: Illegal offset type in %s on line %d
H A Darray_slice_variation4.phpt5 /* Prototype : array array_slice(array $input, int $offset [, int $length [, bool $preserve_keys]])
6 * Description: Returns elements specified by offset and length
18 $offset = 0;
88 var_dump( array_slice($input_array, $offset, $length, $input) );
H A Darray_slice_variation8.phpt5 /* Prototype : array array_slice(array $input, int $offset [, int $length [, bool $preserve_keys]])
6 * Description: Returns elements specified by offset and length
H A Darray_slice_variation9.phpt5 /* Prototype : array array_slice(array $input, int $offset [, int $length [, bool $preserve_keys]])
6 * Description: Returns elements specified by offset and length
H A Darray_map_variation4.phpt82 Warning: Illegal offset type in %s on line %d%d
84 Warning: Illegal offset type in %s on line %d%d
86 Warning: Illegal offset type in %s on line %d%d
88 Warning: Illegal offset type in %s on line %d%d
H A Darray_slice_variation7.phpt5 /* Prototype : array array_slice(array $input, int $offset [, int $length [, bool $preserve_keys]])
6 * Description: Returns elements specified by offset and length
18 $offset = 0;
105 var_dump( array_slice($input, $offset, $length, true) );
107 var_dump( array_slice($input, $offset, $length, false) );
H A Darray_keys_error.phpt12 var_dump(array_keys(array(1,2,3, array() => array()))); // (W)illegal offset
33 Warning: Illegal offset type in %s on line %d
H A Darray_slice_variation10.phpt5 /* Prototype : array array_slice(array $input, int $offset [, int $length [, bool $preserve_keys]])
6 * Description: Returns elements specified by offset and length
/PHP-5.5/ext/standard/tests/strings/
H A Dstripos_variation15.phpt2 Test stripos() function : usage variations - unexpected inputs for 'haystack', 'needle' & 'offset' …
5 /* Prototype : int stripos ( string $haystack, string $needle [, int $offset] );
10 /* Test stripos() function with unexpected inputs for 'haystack', 'needle' & 'offset' arguments */
12 echo "*** Testing stripos() function with unexpected values for haystack, needle & offset ***\n";
90 *** Testing stripos() function with unexpected values for haystack, needle & offset ***
H A Dstrrpos_variation15.phpt2 Test strrpos() function : usage variations - unexpected inputs for 'haystack', 'needle' & 'offset' …
5 /* Prototype : int strrpos ( string $haystack, string $needle [, int $offset] );
10 /* Test strrpos() function with unexpected inputs for 'haystack', 'needle' & 'offset' arguments */
12 echo "*** Testing strrpos() function: with unexpected values for haystack, needle & offset ***\n";
90 *** Testing strrpos() function: with unexpected values for haystack, needle & offset ***
/PHP-5.5/ext/mysqli/tests/
H A Dmysqli_stmt_get_result_types.phpt20 …function func_mysqli_stmt_get_result($link, $engine, $bind_type, $sql_type, $bind_value, $offset, …
23 printf("[%04d] [%d] %s\n", $offset, mysqli_errno($link), mysqli_error($link));
33 printf("[%04d] [%d] %s\n", $offset + 1, mysqli_errno($link), mysqli_error($link));
38 printf("[%04d] [%d] %s\n", $offset + 2, mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
44 printf("[%04d] [%d] %s\n", $offset + 3, mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
51 … printf("[%04d] [%d] %s\n", $offset + 3 + $id, mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
61 printf("[%04d] [%d] %s\n", $offset + 7, mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
67 printf("[%04d] [%d] %s\n", $offset + 8, mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
75 printf("[%04d] [%d] %s\n", $offset + 9, mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
87 $offset + 10, $num,
[all …]
H A Dmysqli_stmt_param_count.phpt30 function func_test_mysqli_stmt_param_count($stmt, $query, $expected, $offset) {
33 printf("[%03d] [%d] %s\n", $offset, mysqli_stmt_errno($stmt), mysqli_error($stmt));
38 printf("[%03d] Expecting %s/%d, got %s/%d\n", $offset + 3,
H A Dmysqli_debug_mysqlnd_only.phpt27 function try_control_string($link, $control_string, $trace_file, $offset) {
32 $offset + 1,
41 $offset + 2,
54 $offset + 3,
H A Dmysqli_stmt_num_rows.phpt27 function func_test_mysqli_stmt_num_rows($stmt, $query, $expected, $offset) {
30 printf("[%03d] [%d] %s\n", $offset, mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
35 printf("[%03d] [%d] %s\n", $offset + 1, mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
40 printf("[%03d] [%d] %s\n", $offset + 2, mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
45 printf("[%03d] Expecting %s/%d, got %s/%d\n", $offset + 3,
/PHP-5.5/ext/pdo_mysql/tests/
H A Dpdo_mysql_attr_max_buffer_size.phpt15 function try_buffer_size($offset, $buffer_size) {
46 $offset, $id, substr($val, 0, 10), strlen($val));
52 $offset,
H A Dpdo_mysql_bit.phpt16 function test_type(&$db, $offset, $sql_type, $value, $ret_value = NULL, $pattern = NULL) {
27 $stmt->bindValue(1, $offset);
30 printf("[%03d + 1] INSERT failed, %s\n", $offset, var_export($stmt->errorInfo(), true));
/PHP-5.5/ext/oci8/tests/
H A Dbug42134.phpt72 ["offset"]=>
85 ["offset"]=>
98 ["offset"]=>
/PHP-5.5/ext/shmop/
H A DREADME35 start - offset from which to start reading
40 int shmop_write(int shmid, string data, int offset)
44 offset - offset in shm to write from
/PHP-5.5/ext/pcre/pcrelib/testdata/
H A Dtestoutput2142 Failed: nothing to repeat at offset 1
145 Failed: missing ) at offset 4
899 Failed: missing ) at offset 4
935 Failed: missing ) at offset 4
944 Failed: missing ) at offset 4
4068 Failed: missing ) at offset 10
9811 Partial match at offset 3: +ab
9813 Partial match at offset 3: +ab
10889 Partial match at offset 3: abc
10955 Error -24 (bad offset value)
[all …]
/PHP-5.5/ext/com_dotnet/
H A Dcom_handlers.c87 static zval *com_read_dimension(zval *object, zval *offset, int type TSRMLS_DC) in com_read_dimension() argument
104 DISPATCH_METHOD|DISPATCH_PROPERTYGET, &v, 1, &offset, 0, 0 TSRMLS_CC)) { in com_read_dimension()
109 convert_to_long(offset); in com_read_dimension()
112 if (php_com_safearray_get_elem(&obj->v, &v, Z_LVAL_P(offset) TSRMLS_CC)) { in com_read_dimension()
117 php_com_saproxy_create(object, return_value, offset TSRMLS_CC); in com_read_dimension()
127 static void com_write_dimension(zval *object, zval *offset, zval *value TSRMLS_DC) in com_write_dimension() argument
137 args[0] = offset; in com_write_dimension()
155 convert_to_long(offset); in com_write_dimension()
156 indices = Z_LVAL_P(offset); in com_write_dimension()
230 static void com_dimension_delete(zval *object, zval *offset TSRMLS_DC) in com_dimension_delete()
/PHP-5.5/ext/session/tests/
H A Dbug72562.phpt41 Notice: unserialize(): Error at offset 0 of 1 bytes in %s/bug72562.php on line %d
43 Notice: unserialize(): Error at offset 4 of 4 bytes in %s/bug72562.php on line %d
/PHP-5.5/ext/intl/tests/
H A Dmsgfmt_format_subpatterns.phpt22 female {{1, plural, offset:1
27 male {{1, plural, offset:1
32 other {{1, plural, offset:1

Completed in 90 milliseconds

12345678910>>...26