Home
last modified time | relevance | path

Searched refs:csv (Results 76 – 100 of 105) sorted by relevance

12345

/PHP-5.5/ext/standard/tests/file/
H A Dfgetcsv_variation9.phpt19 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 Dfputcsv_variation11.phpt16 and 3rd element is csv fields
43 // create the file and add the content with has csv fields
57 // write to a file in csv format
H A Dfputcsv_variation12.phpt17 and 3rd element is csv fields
44 // create the file and add the content with has csv fields
58 // write to a file in csv format
H A Dfputcsv_variation5.phpt16 and 3rd element is csv fields
43 // create the file and add the content with has csv fields
57 // write to a file in csv format
H A Dfputcsv_variation6.phpt19 and 3rd element is csv fields
46 // create the file and add the content with has csv fields
60 // write to a file in csv format
H A Dfputcsv_variation7.phpt19 and 3rd element is csv fields
46 // create the file and add the content with has csv fields
60 // write to a file in csv format
H A Dfputcsv_variation8.phpt19 and 3rd element is csv fields
46 // create the file and add the content with has csv fields
60 // write to a file in csv format
H A Dfgetcsv_variation24.phpt19 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.phpt16 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_variation1.phpt16 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.phpt18 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.phpt16 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_variation11.phpt17 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_variation10.phpt16 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 Dfputcsv_variation1.phpt16 and 3rd element is csv fields
43 // create the file and add the content with has csv fields
H A Dfgetcsv_variation12.phpt16 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
H A Dfgetcsv_variation25.phpt19 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_variation27.phpt19 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_variation28.phpt19 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_variation3.phpt16 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_variation4.phpt16 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_variation5.phpt19 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 Dfputcsv_variation4.phpt16 and 3rd element is csv fields
43 // create the file and add the content with has csv fields
57 // write to a file in csv format
/PHP-5.5/ext/spl/tests/
H A DSplFileObject_fputcsv_variation1.phpt12 and 3rd element is csv fields
39 // create the file and add the content with has csv fields
/PHP-5.5/ext/pgsql/
H A Dpgsql.c3885 char *csv = (char *)NULL; local
3930 ret = PQgetCopyData(pgsql, &csv, 0);
3941 add_next_index_string(return_value, csv, 1);
3942 PQfreemem(csv);
3962 if (csv == (char *)NULL) {
3963 csv = estrdup(copybuf);
3965 csv = (char *)erealloc(csv, strlen(csv) + sizeof(char)*(COPYBUFSIZ+1));
3966 strcat(csv, copybuf);
3974 add_next_index_string(return_value, csv, 1);
3975 efree(csv);
[all …]

Completed in 112 milliseconds

12345