parse() */ $content = file_get_contents(__DIR__.'/sample.binary.plist'); $plist = new CFPropertyList(); $plist->parse($content); /* * retrieve the array structure of sample.plist and dump to stdout */ echo '
'; var_dump( $plist->toArray() ); echo ''; ?>