mirror of
https://github.com/parsecsv/parsecsv-for-php.git
synced 2026-02-19 08:36:39 +00:00
parseCSV 0.3.0
- Changed to the MIT license. - Added offset and limit options. - Added SQL-like conditions for quickly filtering out entries. Documentation on the condition syntax is forthcoming. - Small parsing modification to comply with some recent changes to the specifications outlined on Wikipedia's Comma-separated values article. - Minor changes and optimizations, and a few spelling corrections. Oops :) git-svn-id: http://parsecsv-for-php.googlecode.com/svn/trunk@14 339761fc-0c37-0410-822d-8b8cac1f6a97
This commit is contained in:
@@ -1,15 +1,48 @@
|
||||
<pre>
|
||||
<?php
|
||||
|
||||
|
||||
# include parseCSV class.
|
||||
require_once('../parsecsv.lib.php');
|
||||
|
||||
|
||||
# create new parseCSV object.
|
||||
$csv = new parseCSV();
|
||||
|
||||
$csv->conditions = array( 'title' => array('*paperback*', '*hardcover*') );
|
||||
|
||||
$csv->auto('books.csv');
|
||||
# Example conditions:
|
||||
// $csv->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);
|
||||
|
||||
print_r($csv->data);
|
||||
|
||||
?>
|
||||
</pre>
|
||||
</pre>
|
||||
<style type="text/css" media="screen">
|
||||
table { background-color: #BBB; }
|
||||
th { background-color: #EEE; }
|
||||
td { background-color: #FFF; }
|
||||
</style>
|
||||
<table border="0" cellspacing="1" cellpadding="3">
|
||||
<tr>
|
||||
<?php foreach ($csv->titles as $value): ?>
|
||||
<th><?php echo $value; ?></th>
|
||||
<?php endforeach; ?>
|
||||
</tr>
|
||||
<?php foreach ($csv->data as $key => $row): ?>
|
||||
<tr>
|
||||
<?php foreach ($row as $value): ?>
|
||||
<td><?php echo $value; ?></td>
|
||||
<?php endforeach; ?>
|
||||
</tr>
|
||||
<?php endforeach; ?>
|
||||
</table>
|
||||
Reference in New Issue
Block a user