Recommend this page to a friend! | Stumble It! | Bookmark in del.icio.us |
Classes of Juan Carlos Gonzalez | > | Shape File Reader | > | example.php | > | Download | ||
|
Download |
$shp = new ShapeFile("file.shp"); // along this file the class will use file.shx and file.dbf // Let's see all the records: foreach($shp->records as $record){ echo "<pre>"; // just to format print_r($record->shp_data); // All the data related to the poligon print_r($record->dbf_data); // The alphanumeric information related to the figure echo "</pre>"; } |