Home
last modified time | relevance | path

Searched refs:fputcsv (Results 26 – 42 of 42) sorted by relevance

12

/PHP-7.2/ext/standard/tests/file/
H A Dfputcsv_variation11.phpt2 Test fputcsv() : usage variations - with default enclosure value
6 …Prototype: array fputcsv ( resource $handle , array $fields [, string $delimiter [, string $enclos…
10 /* Testing fputcsv() to write to a file when default enclosure value is provided */
12 echo "*** Testing fputcsv() : with default enclosure value ***\n";
58 var_dump( fputcsv($file_handle, $csv_field, $delimiter) );
76 *** Testing fputcsv() : with default enclosure value ***
H A Dfputcsv_variation12.phpt2 Test fputcsv() : usage variations - with default enclosure and different delimiter
6 …Prototype: array fputcsv ( resource $handle , array $fields [, string $delimiter [, string $enclos…
10 /* Testing fputcsv() to write to a file when default enclosure value and delimiter value
13 echo "*** Testing fputcsv() : with default enclosure and different delimiter value ***\n";
59 var_dump( fputcsv($file_handle, $csv_field, '+') );
77 *** Testing fputcsv() : with default enclosure and different delimiter value ***
H A Dfputcsv_variation5.phpt2 Test fputcsv() : usage variations - with default arguments value
6 …Prototype: array fputcsv ( resource $handle , array $fields [, string $delimiter [, string $enclos…
10 /* Testing fputcsv() to write to a file when default arguments values are considered */
12 echo "*** Testing fputcsv() : with default arguments value ***\n";
58 var_dump( fputcsv($file_handle, $csv_field) );
76 *** Testing fputcsv() : with default arguments value ***
H A Dfputcsv_variation6.phpt2 Test fputcsv() : usage variations - with different delimiter and enclosure
6 …Prototype: array fputcsv ( resource $handle , array $fields [, string $delimiter [, string $enclos…
11 Testing fputcsv() to write to a file when delimiter are different from those
15 echo "*** Testing fputcsv() : with different delimiter and enclosure ***\n";
61 var_dump( fputcsv($file_handle, $csv_field, '+', '%') );
79 *** Testing fputcsv() : with different delimiter and enclosure ***
H A Dfputcsv_variation7.phpt2 Test fputcsv() : usage variations - with different delimiter and same enclosure
6 …Prototype: array fputcsv ( resource $handle , array $fields [, string $delimiter [, string $enclos…
11 Testing fputcsv() to write to a file when enclosure is same but delimiter is different from those
15 echo "*** Testing fputcsv() : with different delimiter and same enclosure ***\n";
61 var_dump( fputcsv($file_handle, $csv_field, '+', $enclosure) );
79 *** Testing fputcsv() : with different delimiter and same enclosure ***
H A Dfputcsv_variation8.phpt2 Test fputcsv() : usage variations - with same delimiter and different enclosure
6 …Prototype: array fputcsv ( resource $handle , array $fields [, string $delimiter [, string $enclos…
11 Testing fputcsv() to write to a file when delimiter is same but enclosure is different from those
15 echo "*** Testing fputcsv() : with same delimiter and different enclosure ***\n";
61 var_dump( fputcsv($file_handle, $csv_field, $delimiter, '+') );
79 *** Testing fputcsv() : with same delimiter and different enclosure ***
/PHP-7.2/ext/spl/tests/
H A DSplFileObject_fputcsv_variation1.phpt2 Test fputcsv() : usage variations - with all parameters specified
6 /* Testing fputcsv() to write to a file when all its parameters are provided */
8 echo "*** Testing fputcsv() : with all parameters specified ***\n";
50 var_dump( $fo->fputcsv($csv_field, $delimiter, $enclosure) );
68 *** Testing fputcsv() : with all parameters specified ***
H A DSplFileObject_fputcsv_variation11.phpt2 SplFileObject::fputcsv(): Usage variations -- with default enclosure value
6 /* Testing fputcsv() to write to a file when default enclosure value is provided */
8 echo "*** Testing fputcsv() : with default enclosure value ***\n";
50 var_dump( $fo->fputcsv($csv_field, $delimiter) );
68 *** Testing fputcsv() : with default enclosure value ***
H A DSplFileObject_fputcsv_variation12.phpt2 SplFileObject::fputcsv(): Usage variations -- with default enclosure and different delimiter
6 /* Testing fputcsv() to write to a file when default enclosure value and delimiter value
9 echo "*** Testing fputcsv() : with default enclosure and different delimiter value ***\n";
51 var_dump( $fo->fputcsv($csv_field, '+') );
69 *** Testing fputcsv() : with default enclosure and different delimiter value ***
H A DSplFileObject_fputcsv_variation5.phpt2 Test fputcsv() : usage variations - with default arguments value
6 /* Testing fputcsv() to write to a file when default arguments values are considered */
8 echo "*** Testing fputcsv() : with default arguments value ***\n";
50 var_dump( $fo->fputcsv($csv_field) );
68 *** Testing fputcsv() : with default arguments value ***
H A DSplFileObject_fputcsv_variation6.phpt2 Test fputcsv() : usage variations - with different delimiter and enclosure
7 Testing fputcsv() to write to a file when delimiter are different from those
11 echo "*** Testing fputcsv() : with different delimiter and enclosure ***\n";
53 var_dump( $fo->fputcsv($csv_field, '+', '%') );
71 *** Testing fputcsv() : with different delimiter and enclosure ***
H A DSplFileObject_fputcsv_variation7.phpt2 Test fputcsv() : usage variations - with different delimiter and same enclosure
7 Testing fputcsv() to write to a file when enclosure is same but delimiter is different from those
11 echo "*** Testing fputcsv() : with different delimiter and same enclosure ***\n";
53 var_dump( $fo->fputcsv($csv_field, '+', $enclosure) );
71 *** Testing fputcsv() : with different delimiter and same enclosure ***
H A DSplFileObject_fputcsv_variation8.phpt2 Test fputcsv() : usage variations - with same delimiter and different enclosure
7 Testing fputcsv() to write to a file when delimiter is same but enclosure is different from those
11 echo "*** Testing fputcsv() : with same delimiter and different enclosure ***\n";
53 var_dump( $fo->fputcsv($csv_field, $delimiter, '+') );
71 *** Testing fputcsv() : with same delimiter and different enclosure ***
/PHP-7.2/ext/standard/
H A Dfile.h44 PHP_FUNCTION(fputcsv);
H A Dfile.c1867 PHP_FUNCTION(fputcsv) in PHP_FUNCTION() argument
H A Dbasic_functions.c3162 PHP_FE(fputcsv, arginfo_fputcsv)
/PHP-7.2/ext/spl/
H A Dspl_directory.c2643 SPL_METHOD(SplFileObject, fputcsv) in SPL_METHOD() argument
3086 SPL_ME(SplFileObject, fputcsv, arginfo_file_object_fputcsv, ZEND_ACC_PUBLIC)

Completed in 73 milliseconds

12