If you’re reading Instant XML with PHP and PEAR::XML_Serializer, there’s a small point I need to correct, related to unserializing XML into PHP objects. On page 3, about half way down, I wrote;
Like PHP’s unserialize() function, XML_Unserializer doesn’t provide a mechanism for calling class methods when unserializing objects; rather, it sets the properties of an object directly (so, be careful):
Since writing that, while trawling the source discovered that XML_Unserializer does provide a mechanism to use a method for setting object properties, by using an explicitly named method like “set
In other words, when unserializing objects, if your PHP class contains “setter methods”, following this naming convention, XML_Unserializer will use those methods instead of setting the property directly.






May 17th, 2004 at 9:35 am
Seems I should have written some docs on XML_Serializer :-)
For the future, I plan on making this feature more flexible.
Stephan
May 18th, 2004 at 4:31 am
Not to worry. Gives me something to do ;) Of course if you can train that dog of yours some more…