mirror of
https://github.com/parsecsv/parsecsv-for-php.git
synced 2026-02-19 08:36:39 +00:00
__construct documentation
This commit is contained in:
@@ -170,8 +170,13 @@ class parseCSV {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructor
|
* Constructor
|
||||||
* @param input CSV file or string
|
* Class constructor
|
||||||
* @return nothing
|
*
|
||||||
|
* @access public
|
||||||
|
* @param [input] string The CSV string or a direct filepath
|
||||||
|
* @param [offset] integer Number of rows to ignore from the beginning of the data
|
||||||
|
* @param [limit] integer Limits the number of returned rows to specified amount
|
||||||
|
* @param [conditions] string Basic SQL-like conditions for row matching
|
||||||
*/
|
*/
|
||||||
public function __construct ($input = null, $offset = null, $limit = null, $conditions = null) {
|
public function __construct ($input = null, $offset = null, $limit = null, $conditions = null) {
|
||||||
if ($offset!==null) {
|
if ($offset!==null) {
|
||||||
|
|||||||
Reference in New Issue
Block a user