public
Description: A collection of PHP classes which anyone can add to their development toolbox
Homepage: http://www.jeremyjohnstone.com
Clone URL: git://github.com/jsjohnst/php_class_lib.git
Click here to lend your support to: php_class_lib and make a donation at www.pledgie.com !
php_class_lib / classes / parsers / plist / example.php
100644 8 lines (5 sloc) 0.147 kb
1
2
3
4
5
6
7
8
<?php
 
include("PlistParser.inc");
 
$parser = new plistParser();
$plist = $parser->parseFile(dirname(__FILE__) . "/iTunes.xml");
var_dump($plist);