Home
last modified time | relevance | path

Searched refs:fields (Results 76 – 100 of 145) sorted by relevance

123456

/PHP-7.0/ext/standard/tests/file/
H A Dfputcsv_variation14.phpt6 …Prototype: array fputcsv ( resource $handle , array $fields [, string $delimiter [, string $enclos…
17 and 3rd element is csv fields
56 // add the content with has csv fields
H A Dfgetcsv_variation8.phpt7 Description: Gets line from file pointer and parse for CSV fields
19 and 3rd element is csv fields
43 // create the file and add the content with has csv fields
61 fwrite($file_handle, "This is line of text without csv fields\n");
76 // call fgetcsv() to parse csv fields
H A Dfgetcsv_variation9.phpt7 Description: Gets line from file pointer and parse for CSV fields
19 and 3rd element is csv fields
43 // create the file and add the content with has csv fields
60 fwrite($file_handle, "This is line of text without csv fields\n");
75 // call fgetcsv() to parse csv fields
H A Dfgetcsv_error.phpt7 Description: Gets line from file pointer and parse for CSV fields
H A Dfgetcsv_variation1.phpt7 Description: Gets line from file pointer and parse for CSV fields
16 and 3rd element is csv fields
40 // create the file and add the content with has csv fields
58 fwrite($file_handle, "This is line of text without csv fields\n");
73 // call fgetcsv() to parse csv fields
H A Dfgetcsv_variation19.phpt7 Description: Gets line from file pointer and parse for CSV fields
18 1st element is delimiter & 2nd element is csv fields
39 // create the file and add the content with has csv fields
55 fwrite($file_handle, "This is line of text without csv fields\n");
70 // call fgetcsv() to parse csv fields
H A Dfgetcsv_variation2.phpt7 Description: Gets line from file pointer and parse for CSV fields
16 and 3rd element is csv fields
40 // create the file and add the content with has csv fields
58 fwrite($file_handle, "This is line of text without csv fields\n");
73 // call fgetcsv() to parse csv fields
H A Dfgetcsv_variation24.phpt7 Description: Gets line from file pointer and parse for CSV fields
19 and 3rd element is csv fields
41 // create the file and add the content with has csv fields
58 fwrite($file_handle, "This is line of text without csv fields\n");
73 // call fgetcsv() to parse csv fields
H A Dfgetcsv_variation7.phpt7 Description: Gets line from file pointer and parse for CSV fields
16 and 3rd element is csv fields
40 // create the file and add the content with has csv fields
57 fwrite($file_handle, "This is line of text without csv fields\n");
72 // call fgetcsv() to parse csv fields
H A Dfgetcsv_variation11.phpt7 Description: Gets line from file pointer and parse for CSV fields
17 and 3rd element is csv fields
41 // create the file and add the content with has csv fields
58 fwrite($file_handle, "This is line of text without csv fields\n");
73 // call fgetcsv() to parse csv fields
H A Dfputcsv_variation1.phpt6 …Prototype: array fputcsv ( resource $handle , array $fields [, string $delimiter [, string $enclos…
16 and 3rd element is csv fields
43 // create the file and add the content with has csv fields
H A Dfputcsv_variation5.phpt6 …Prototype: array fputcsv ( resource $handle , array $fields [, string $delimiter [, string $enclos…
16 and 3rd element is csv fields
43 // create the file and add the content with has csv fields
H A Dfputcsv_variation6.phpt6 …Prototype: array fputcsv ( resource $handle , array $fields [, string $delimiter [, string $enclos…
19 and 3rd element is csv fields
46 // create the file and add the content with has csv fields
H A Dfputcsv_variation7.phpt6 …Prototype: array fputcsv ( resource $handle , array $fields [, string $delimiter [, string $enclos…
19 and 3rd element is csv fields
46 // create the file and add the content with has csv fields
H A Dfputcsv_variation8.phpt6 …Prototype: array fputcsv ( resource $handle , array $fields [, string $delimiter [, string $enclos…
19 and 3rd element is csv fields
46 // create the file and add the content with has csv fields
H A Dfputcsv_variation11.phpt6 …Prototype: array fputcsv ( resource $handle , array $fields [, string $delimiter [, string $enclos…
16 and 3rd element is csv fields
43 // create the file and add the content with has csv fields
H A Dfputcsv_variation12.phpt6 …Prototype: array fputcsv ( resource $handle , array $fields [, string $delimiter [, string $enclos…
17 and 3rd element is csv fields
44 // create the file and add the content with has csv fields
H A Dfgetcsv_variation10.phpt7 Description: Gets line from file pointer and parse for CSV fields
16 and 3rd element is csv fields
40 // create the file and add the content with has csv fields
57 fwrite($file_handle, "This is line of text without csv fields\n");
71 // call fgetcsv() to parse csv fields
H A Dfgetcsv_variation12.phpt7 Description: Gets line from file pointer and parse for CSV fields
16 and 3rd element is csv fields
38 // create the file and add the content with has csv fields
56 fwrite($file_handle, "This is line of text without csv fields\n");
71 // call fgetcsv() to parse csv fields
/PHP-7.0/ext/mysqli/tests/
H A Dmysqli_store_result_copy.phpt84 $fields = $res->fetch_fields();
107 foreach ($fields as $k => $field_info) {
H A Dmysqli_stmt_bind_result.phpt126 $fields = mysqli_fetch_fields($result);
328 Warning: mysqli_stmt_bind_result(): Number of bind variables doesn't match number of fields in prep…
330 Warning: mysqli_stmt_bind_result(): Number of bind variables doesn't match number of fields in prep…
H A Dmysqli_stmt_get_result_seek.phpt34 …printf("[006] Expecting 2 fields, got %s/%s rows\n", gettype($res->field_count), $res->field_count…
/PHP-7.0/ext/standard/
H A Dfile.c1825 zval *fp = NULL, *fields = NULL; in PHP_FUNCTION() local
1831 &fp, &fields, &delimiter_str, &delimiter_str_len, in PHP_FUNCTION()
1874 ret = php_fputcsv(stream, fields, delimiter, enclosure, escape_char); in PHP_FUNCTION()
1880 PHPAPI size_t php_fputcsv(php_stream *stream, zval *fields, char delimiter, char enclosure, char es… in php_fputcsv() argument
1887 count = zend_hash_num_elements(Z_ARRVAL_P(fields)); in php_fputcsv()
1888 ZEND_HASH_FOREACH_VAL(Z_ARRVAL_P(fields), field_tmp) { in php_fputcsv()
/PHP-7.0/ext/mysqli/
H A Dmysqli.c1160 MYSQL_FIELD *fields; in php_mysqli_fetch_into_hash_aux() local
1168 fields = mysql_fetch_fields(result); in php_mysqli_fetch_into_hash_aux()
1213 add_assoc_zval(return_value, fields[i].name, &res); in php_mysqli_fetch_into_hash_aux()
1220 add_assoc_null(return_value, fields[i].name); in php_mysqli_fetch_into_hash_aux()
/PHP-7.0/Zend/
H A DREADME.ZEND_VM5 fields and using different execution methods (call threading, switch threading

Completed in 92 milliseconds

123456