<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: PHP plist parsing</title>
	<atom:link href="http://blog.iconara.net/2007/05/08/php-plist-parsing/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.iconara.net/2007/05/08/php-plist-parsing/</link>
	<description></description>
	<pubDate>Wed, 20 Aug 2008 03:29:09 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
		<item>
		<title>By: Theo</title>
		<link>http://blog.iconara.net/2007/05/08/php-plist-parsing/#comment-6817</link>
		<dc:creator>Theo</dc:creator>
		<pubDate>Wed, 04 Jun 2008 11:27:26 +0000</pubDate>
		<guid isPermaLink="false">http://blog.iconara.net/2007/05/08/php-plist-parsing/#comment-6817</guid>
		<description>print_r($array);</description>
		<content:encoded><![CDATA[<p>print_r($array);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Philip Brechler</title>
		<link>http://blog.iconara.net/2007/05/08/php-plist-parsing/#comment-6816</link>
		<dc:creator>Philip Brechler</dc:creator>
		<pubDate>Wed, 04 Jun 2008 08:36:59 +0000</pubDate>
		<guid isPermaLink="false">http://blog.iconara.net/2007/05/08/php-plist-parsing/#comment-6816</guid>
		<description>Thanks!

I tried it on another server, it works fine now. But what can I search for? If I do a echo count ( $array ); its allways 0. So if parse for "serialNumber" or such it should find something or is there a error in my thougts?</description>
		<content:encoded><![CDATA[<p>Thanks!</p>
<p>I tried it on another server, it works fine now. But what can I search for? If I do a echo count ( $array ); its allways 0. So if parse for &#8220;serialNumber&#8221; or such it should find something or is there a error in my thougts?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Theo</title>
		<link>http://blog.iconara.net/2007/05/08/php-plist-parsing/#comment-6815</link>
		<dc:creator>Theo</dc:creator>
		<pubDate>Wed, 04 Jun 2008 06:12:21 +0000</pubDate>
		<guid isPermaLink="false">http://blog.iconara.net/2007/05/08/php-plist-parsing/#comment-6815</guid>
		<description>I have no idea. Check your error log. It could be a number of things that has gone wrong. For one it's possible that your PHP installation doesn't have DOM support.</description>
		<content:encoded><![CDATA[<p>I have no idea. Check your error log. It could be a number of things that has gone wrong. For one it&#8217;s possible that your PHP installation doesn&#8217;t have DOM support.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Philip Brechler</title>
		<link>http://blog.iconara.net/2007/05/08/php-plist-parsing/#comment-6814</link>
		<dc:creator>Philip Brechler</dc:creator>
		<pubDate>Tue, 03 Jun 2008 22:42:41 +0000</pubDate>
		<guid isPermaLink="false">http://blog.iconara.net/2007/05/08/php-plist-parsing/#comment-6814</guid>
		<description>Hi!

I would like to use your script to parse trough a system profile of OS X clients. But after this:

$plistDocument = new DOMDocument();
$plistDocument-&#62;load($path);

the scipt stops without a error notification. What is the meaning of this?</description>
		<content:encoded><![CDATA[<p>Hi!</p>
<p>I would like to use your script to parse trough a system profile of OS X clients. But after this:</p>
<p>$plistDocument = new DOMDocument();<br />
$plistDocument-&gt;load($path);</p>
<p>the scipt stops without a error notification. What is the meaning of this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Theo</title>
		<link>http://blog.iconara.net/2007/05/08/php-plist-parsing/#comment-5871</link>
		<dc:creator>Theo</dc:creator>
		<pubDate>Tue, 01 Apr 2008 16:02:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.iconara.net/2007/05/08/php-plist-parsing/#comment-5871</guid>
		<description>It would work fine in PHP5. I'm pretty sure I tested it on a PHP5 system (can't remember when I last worked on a PHP4 system).

You can even stick the functions inside a class, but then you would have to change this part:

if ( is_callable($transformerName) ) {
  return call_user_func($transformerName, $valueNode);
}

into something like this:

if ( is_callable(array($this, $transformerName)) ) {
  return $this-&gt;$transformerName($valueNode);
}</description>
		<content:encoded><![CDATA[<p>It would work fine in PHP5. I&#8217;m pretty sure I tested it on a PHP5 system (can&#8217;t remember when I last worked on a PHP4 system).</p>
<p>You can even stick the functions inside a class, but then you would have to change this part:</p>
<p>if ( is_callable($transformerName) ) {<br />
  return call_user_func($transformerName, $valueNode);<br />
}</p>
<p>into something like this:</p>
<p>if ( is_callable(array($this, $transformerName)) ) {<br />
  return $this->$transformerName($valueNode);<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Patrick</title>
		<link>http://blog.iconara.net/2007/05/08/php-plist-parsing/#comment-5870</link>
		<dc:creator>Patrick</dc:creator>
		<pubDate>Tue, 01 Apr 2008 15:53:12 +0000</pubDate>
		<guid isPermaLink="false">http://blog.iconara.net/2007/05/08/php-plist-parsing/#comment-5870</guid>
		<description>Does this code only work in PHP5? Are there any updates since this article was published? Like others, I am trying to figure out how to parse the iTunes library xml file. Thanks.</description>
		<content:encoded><![CDATA[<p>Does this code only work in PHP5? Are there any updates since this article was published? Like others, I am trying to figure out how to parse the iTunes library xml file. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Parsing ITunes Library.xml And Plist Files &#124; David Bisset: Web Designer, Coder, Wordpress Guru</title>
		<link>http://blog.iconara.net/2007/05/08/php-plist-parsing/#comment-5130</link>
		<dc:creator>Parsing ITunes Library.xml And Plist Files &#124; David Bisset: Web Designer, Coder, Wordpress Guru</dc:creator>
		<pubDate>Sun, 27 Jan 2008 15:25:02 +0000</pubDate>
		<guid isPermaLink="false">http://blog.iconara.net/2007/05/08/php-plist-parsing/#comment-5130</guid>
		<description>[...] get them in my bookmarks for my fellow coders. Parsing ITunes Library.xml with ActionScript 3.0 and plist parsing in PHP.  Tags: Actionscript, Flex, iTunes, [...]</description>
		<content:encoded><![CDATA[<p>[...] get them in my bookmarks for my fellow coders. Parsing ITunes Library.xml with ActionScript 3.0 and plist parsing in PHP.  Tags: Actionscript, Flex, iTunes, [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thomas</title>
		<link>http://blog.iconara.net/2007/05/08/php-plist-parsing/#comment-4903</link>
		<dc:creator>Thomas</dc:creator>
		<pubDate>Thu, 01 Nov 2007 09:09:02 +0000</pubDate>
		<guid isPermaLink="false">http://blog.iconara.net/2007/05/08/php-plist-parsing/#comment-4903</guid>
		<description>("..first dimension is xml node [plist], second [dict], and so forth...?")</description>
		<content:encoded><![CDATA[<p>(&#8221;..first dimension is xml node [plist], second [dict], and so forth&#8230;?&#8221;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thomas</title>
		<link>http://blog.iconara.net/2007/05/08/php-plist-parsing/#comment-4902</link>
		<dc:creator>Thomas</dc:creator>
		<pubDate>Thu, 01 Nov 2007 09:07:28 +0000</pubDate>
		<guid isPermaLink="false">http://blog.iconara.net/2007/05/08/php-plist-parsing/#comment-4902</guid>
		<description>What will the array look like ? How can I traverse it ?

Are there only numeral keys for dicts and arrays and array keys for "key"s and siblings ?

If I were to process the songs in the Itunes plist, would I assume that first dimension is , second , and so forth... ?</description>
		<content:encoded><![CDATA[<p>What will the array look like ? How can I traverse it ?</p>
<p>Are there only numeral keys for dicts and arrays and array keys for &#8220;key&#8221;s and siblings ?</p>
<p>If I were to process the songs in the Itunes plist, would I assume that first dimension is , second , and so forth&#8230; ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Theo</title>
		<link>http://blog.iconara.net/2007/05/08/php-plist-parsing/#comment-4691</link>
		<dc:creator>Theo</dc:creator>
		<pubDate>Sun, 22 Jul 2007 09:05:33 +0000</pubDate>
		<guid isPermaLink="false">http://blog.iconara.net/2007/05/08/php-plist-parsing/#comment-4691</guid>
		<description>Thank you for that summary!</description>
		<content:encoded><![CDATA[<p>Thank you for that summary!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.292 seconds -->
