conditions = 'title contains paperback OR title contains hardcover'; $csv->conditions = 'author does not contain dan brown'; // $csv->conditions = 'rating < 4 OR author is John Twelve Hawks'; // $csv->conditions = 'rating > 4 AND author is Dan Brown'; # Parse '_books.csv' using automatic delimiter detection. $csv->auto('_books.csv'); # Output result. // print_r($csv->data); ?>