Home
last modified time | relevance | path

Searched refs:enclosure (Results 26 – 50 of 70) sorted by relevance

123

/PHP-7.4/ext/standard/tests/file/
H A Dfputcsv_variation11.phpt2 Test fputcsv() : usage variations - with default enclosure value
6 …e: array fputcsv ( resource $handle , array $fields [, string $delimiter [, string $enclosure]]] );
10 /* Testing fputcsv() to write to a file when default enclosure value is provided */
12 echo "*** Testing fputcsv() : with default enclosure value ***\n";
15 1st element is delimiter, 2nd element is enclosure
54 $enclosure = $csv_list[1];
76 *** Testing fputcsv() : with default enclosure value ***
H A Dfputcsv_variation12.phpt2 Test fputcsv() : usage variations - with default enclosure and different delimiter
6 …e: array fputcsv ( resource $handle , array $fields [, string $delimiter [, string $enclosure]]] );
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";
16 1st element is delimiter, 2nd element is enclosure
55 $enclosure = $csv_list[1];
77 *** Testing fputcsv() : with default enclosure and different delimiter value ***
H A Dfgetcsv_variation23.phpt6 …pe: array fgetcsv ( resource $handle [, int $length [, string $delimiter [, string $enclosure]]] );
H A Dfgetcsv_variation8.phpt2 Test fgetcsv() : usage variations - with different delimiter and enclosure
6 …pe: array fgetcsv ( resource $handle [, int $length [, string $delimiter [, string $enclosure]]] );
12 enclosure that are not present in the line read by fgetcsv()
15 echo "*** Testing fgetcsv() : with different delimiter and enclosure ***\n";
18 1st element is delimiter, 2nd element is enclosure
54 $enclosure = $csv_list[1];
78 // use different delimiter and enclosure than existing in file
97 *** Testing fgetcsv() : with different delimiter and enclosure ***
H A Dfgetcsv_variation9.phpt2 Test fgetcsv() : usage variations - with different delimiter but same enclosure
6 …pe: array fgetcsv ( resource $handle [, int $length [, string $delimiter [, string $enclosure]]] );
15 echo "*** Testing fgetcsv() : with different delimiter but same enclosure ***\n";
18 1st element is delimiter, 2nd element is enclosure
54 $enclosure = $csv_list[1];
77 // use different delimiter but same enclosure char
80 var_dump( fgetcsv($file_handle, 1024, $del, $enclosure) );
95 *** Testing fgetcsv() : with different delimiter but same enclosure ***
H A Dfputcsv_variation6.phpt2 Test fputcsv() : usage variations - with different delimiter and enclosure
6 …e: array fputcsv ( resource $handle , array $fields [, string $delimiter [, string $enclosure]]] );
15 echo "*** Testing fputcsv() : with different delimiter and enclosure ***\n";
18 1st element is delimiter, 2nd element is enclosure
57 $enclosure = $csv_list[1];
79 *** Testing fputcsv() : with different delimiter and enclosure ***
H A Dfgetcsv_variation18.phpt2 Test fgetcsv() : usage variations - with default enclosure and different delimiter
6 …pe: array fgetcsv ( resource $handle [, int $length [, string $delimiter [, string $enclosure]]] );
10 /* Testing fgetcsv() to read a file when provided with default enclosure character
14 echo "*** Testing fgetcsv() : with default enclosure and different delimiter ***\n";
89 *** Testing fgetcsv() : with default enclosure and different delimiter ***
H A Dfgetcsv_variation22.phpt2 Test fgetcsv() : usage variations - with default enclosure, file pointer pointing at end of file
6 …pe: array fgetcsv ( resource $handle [, int $length [, string $delimiter [, string $enclosure]]] );
12 and fgetcsv() provided with default enclosure argument
15 echo "*** Testing fgetcsv() : with default enclosure, file pointer pointing at end of file ***\n";
88 *** Testing fgetcsv() : with default enclosure, file pointer pointing at end of file ***
H A Dfgetcsv_variation31.phpt2 Test fgetcsv() : usage variations - with length and enclosure, file pointer pointing at end of file
6 …pe: array fgetcsv ( resource $handle [, int $length [, string $delimiter [, string $enclosure]]] );
12 and fgetcsv() provided with enclosure argument
15 echo "*** Testing fgetcsv() : with enclosure argument, file pointer pointing at end of file ***\n";
90 *** Testing fgetcsv() : with enclosure argument, file pointer pointing at end of file ***
H A Dfgetcsv_variation11.phpt2 Test fgetcsv() : usage variations - with different enclosure but same delimiter
6 …pe: array fgetcsv ( resource $handle [, int $length [, string $delimiter [, string $enclosure]]] );
10 /* Testing fgetcsv() by reading from a file when different enclosure that is not
13 echo "*** Testing fgetcsv() : with different enclosure but same delimiter char ***\n";
16 1st element is delimiter, 2nd element is enclosure
52 $enclosure = $csv_list[1];
76 // use different delimiter but same enclosure char
94 *** Testing fgetcsv() : with different enclosure but same delimiter char ***
H A Dfputcsv_variation10.phpt6 …e: array fputcsv ( resource $handle , array $fields [, string $delimiter [, string $enclosure]]] );
16 1st element is delimiter, 2nd element is enclosure
H A Dfgetcsv_variation15.phpt2 Test fgetcsv() : usage variations - with default enclosure
6 …pe: array fgetcsv ( resource $handle [, int $length [, string $delimiter [, string $enclosure]]] );
10 /* Testing fgetcsv() to read a file when provided with default enclosure character */
12 echo "*** Testing fgetcsv() : with default enclosure ***\n";
84 *** Testing fgetcsv() : with default enclosure ***
H A Dfgetcsv_variation16.phpt2 Test fgetcsv() : usage variations - with default enclosure & length as 0
6 …pe: array fgetcsv ( resource $handle [, int $length [, string $delimiter [, string $enclosure]]] );
10 /* Testing fgetcsv() to read a file when provided with default enclosure character
14 echo "*** Testing fgetcsv() : with default enclosure & length as 0 ***\n";
88 *** Testing fgetcsv() : with default enclosure & length as 0 ***
H A Dfputcsv_variation1.phpt6 …e: array fputcsv ( resource $handle , array $fields [, string $delimiter [, string $enclosure]]] );
15 1st element is delimiter, 2nd element is enclosure
54 $enclosure = $csv_list[1];
58 var_dump( fputcsv($file_handle, $csv_field, $delimiter, $enclosure) );
H A Dfputcsv_variation4.phpt2 Test fputcsv() : usage variations - with delimiter and enclosure as NULL
6 …e: array fputcsv ( resource $handle , array $fields [, string $delimiter [, string $enclosure]]] );
10 /* Testing fputcsv() to write to a file when delimiter and enclosure is NULL */
12 echo "*** Testing fputcsv() : with delimiter and enclosure as NULL ***\n";
15 1st element is delimiter, 2nd element is enclosure
54 $enclosure = $csv_list[1];
76 *** Testing fputcsv() : with delimiter and enclosure as NULL ***
H A Dfgetcsv_variation19.phpt2 Test fgetcsv() : usage variations - with default enclosure & delimiter of two chars
6 …pe: array fgetcsv ( resource $handle [, int $length [, string $delimiter [, string $enclosure]]] );
11 Testing fgetcsv() to read a file when provided with default enclosure character
15 echo "*** Testing fgetcsv() : with default enclosure & delimiter of two chars ***\n";
72 // use delimiter & enclosure char of two chars
90 *** Testing fgetcsv() : with default enclosure & delimiter of two chars ***
H A Dfputcsv_variation13.phpt2 Test fputcsv() : usage variations - with default enclosure & delimiter of two chars
6 …e: array fputcsv ( resource $handle , array $fields [, string $delimiter [, string $enclosure]]] );
10 /* Testing fputcsv() to write to a file when default enclosure value and delimiter
13 echo "*** Testing fputcsv() : with default enclosure & delimiter of two chars ***\n";
16 1st element is delimiter, 2nd element is enclosure
55 $enclosure = $csv_list[1];
77 *** Testing fputcsv() : with default enclosure & delimiter of two chars ***
H A Dfgetcsv_variation1.phpt6 …pe: array fgetcsv ( resource $handle [, int $length [, string $delimiter [, string $enclosure]]] );
15 1st element is delimiter, 2nd element is enclosure
51 $enclosure = $csv_list[1];
75 // use the right delimiter and enclosure with max length
76 var_dump( fgetcsv($file_handle, 1024, $delimiter, $enclosure) );
H A Dfgetcsv_variation17.phpt2 Test fgetcsv() : usage variations - with default enclosure & length less than line size
6 …pe: array fgetcsv ( resource $handle [, int $length [, string $delimiter [, string $enclosure]]] );
10 /* Testing fgetcsv() to read a file when provided with default enclosure character
14 echo "*** Testing fgetcsv() : with default enclosure & length less than line size ***\n";
94 *** Testing fgetcsv() : with default enclosure & length less than line size ***
H A Dfgetcsv_variation26.phpt6 …pe: array fgetcsv ( resource $handle [, int $length [, string $delimiter [, string $enclosure]]] );
15 1st element is delimiter, 2nd element is enclosure
47 $enclosure = $csv_list[1];
64 // use the right delimiter and enclosure with max length
65 var_dump( fgetcsv($file_handle, 1024, $delimiter, $enclosure) );
/PHP-7.4/ext/spl/tests/
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";
11 1st element is delimiter, 2nd element is enclosure
46 $enclosure = $csv_list[1];
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";
12 1st element is delimiter, 2nd element is enclosure
47 $enclosure = $csv_list[1];
69 *** Testing fputcsv() : with default enclosure and different delimiter value ***
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";
14 1st element is delimiter, 2nd element is enclosure
49 $enclosure = $csv_list[1];
71 *** Testing fputcsv() : with same delimiter and different enclosure ***
H A DSplFileObject_fputcsv_variation6.phpt2 Test fputcsv() : usage variations - with different delimiter and enclosure
11 echo "*** Testing fputcsv() : with different delimiter and enclosure ***\n";
14 1st element is delimiter, 2nd element is enclosure
49 $enclosure = $csv_list[1];
71 *** Testing fputcsv() : with different delimiter and enclosure ***
/PHP-7.4/ext/spl/
H A Dspl_directory.h98 char enclosure; member

Completed in 50 milliseconds

123