Login   Register  
PHP Classes
elePHPant
Icontem

File: example_localFile.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Armin Randjbar-Daemi  >  simpleTagReader  >  example_localFile.php  >  Download  
File: example_localFile.php
Role: Example script
Content type: text/plain
Description: example
Class: simpleTagReader
Extract values from tag based documents
Author: By
Last change:
Date: 2008-05-19 12:25
Size: 373 bytes
 

Contents

Class file image Download
<?php
// read local XML file
require_once('class.simpleTagReader.php');

$fileLen filesize('example_localFile.xml');
$test = new simpleTagReader('example_localFile.xml'$fileLen);

$map_no5 $test->readTag('map'5);//read 5th "map" Tag
echo "5th map: " $map_no5;

echo 
"<br />";

$all_names $test->readAllTags('name');//read All "name" Tags
print_r($all_names);
?>