Lines:
1 to 32 of 32
<?php /* class parseCSV */ /* function parseCSV::__construct() – Constructor Class constructor */ /* function parseCSV::parse() – Parse Parse a CSV file or string */ /* function parseCSV::save() – Save Save changes, or write a new file and/or data */ /* function parseCSV::output() – Output Generate a CSV based string for output. */ /* function parseCSV::encoding() – Encoding Convert character encoding */ /* function parseCSV::auto() – Auto Auto-Detect Delimiter: Find delimiter by analyzing a specific number of rows to determine most probable delimiter character */ /* function parseCSV::parse_file() – Parse File Read file to string and call parse_string() */ /* function parseCSV::parse_string() – Parse CSV strings to arrays */ /* function parseCSV::unparse() – Create CSV data from array */ /* function parseCSV::load_data() – Load local file or string */ /* function parseCSV::_validate_row_conditions() – Validate a row against specified conditions */ /* function parseCSV::_validate_row_condition() – Validate a row against a single condition */ /* function parseCSV::_validate_offset() – Validates if the row is within the offset or not if sorting is disabled */ /* function parseCSV::_enclose_value() – Enclose values if needed – only used by unparse() */ /* function parseCSV::_check_data() – Check file data */ /* function parseCSV::_check_count() – Check if passed info might be delimiter Only used by find_delimiter */ /* function parseCSV::_rfile() – Read local file */ /* function parseCSV::_wfile() – Write to local file */