Class CSV
Simple object to aid in creating CSV documents
Located in /class.csv.php (line 22)
Adds the supplied array of data to the CSV document. If the number of columns in the data does not match the number of columns in the headers (unless there are no headers), this method will throw an exception.
- array $aData: An array of CSV row data
Adds a header to the list of CSV column headers. This method appends to the current list of headers by adding the single header.
- string $sHeader: The name of the header to add to the list of column headers
Adds an array of headers to the list of CSV column headers. This method appends to the current list of headers by adding the passed array of headers to the existing array of headers already added.
- array $aHeaders: An array of headers to append to the current array of headers
This method takes the headers and data stored in this object and creates a CSV document from that data.
Documentation generated on Thu, 25 Feb 2010 15:59:40 -0500 by phpDocumentor 1.4.3

