Lines Matching refs:array
6 …Prototype: array fgetcsv ( resource $handle [, int $length [, string $delimiter [, string $enclosu…
14 /* the array is with three elements in it. Each element should be read as
18 $csv_lists = array (
19 array(',', '"', '"water",fruit'),
20 array(',', '"', '"water","fruit"'),
21 array(' ', '^', '^water^ ^fruit^'),
22 array(':', '&', '&water&:&fruit&'),
23 array('=', '=', '=water===fruit='),
24 array('-', '-', '-water--fruit-air'),
25 array('-', '-', '-water---fruit---air-'),
26 array(':', '&', '&""""&:&"&:,:":&,&:,,,,')
32 $file_modes = array ("r","rb", "rt", "r+", "r+b", "r+t",