Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

Davey Shafik's Blog:
ext/dom and libxml2 charset and entities behaviors
Aug 11, 2009 @ 15:23:53

Davey Shafik points out a second option for the saveXML function of the DOM functionality in PHP - an option to restrict the use of "empty tags".

This argument currently only supports one value which is the constant LIBXML_NOEMPTYTAGS. This option makes sure that you do not end up with <tag /> but instead, <tag></tag>. This can make things easier if you need more predictable text to perform other changes on later.

He also noticed some other changes that the option made in his XML documents, specifically a size increase issue with spaces. Code samples are included to show these differences.

tagged: dom extension savexml charset libxml2 emptytags

Link:

Greg Beaver's Blog:
Update to libxml2 in PHP - progress hath been acquired
Jun 06, 2007 @ 16:45:00

Related to an issue from a previous post, Greg Beaver has posted a solution to his Relax NG schema problem in PHP.

Shortly after my last blog post, I got a very helpful email from Rob Richards, who offered to help me with my trials and tribulations. He took a quick look at the schema for package.xml, and a sample package.xml and was able to find two small tweaks to make parsing actually work (gasp). This changes everything. I am abandoning the creation of a relax NG schema in favor of the battle-tested xsd. The error messages for xsd validation are far clearer than the rng ones.

The code included shows how much simpler the error messages are with the XSD validation option versus the RNG ones.

tagged: rng schema libxml2 validate error message rng schema libxml2 validate error message

Link:

Greg Beaver's Blog:
Update to libxml2 in PHP - progress hath been acquired
Jun 06, 2007 @ 16:45:00

Related to an issue from a previous post, Greg Beaver has posted a solution to his Relax NG schema problem in PHP.

Shortly after my last blog post, I got a very helpful email from Rob Richards, who offered to help me with my trials and tribulations. He took a quick look at the schema for package.xml, and a sample package.xml and was able to find two small tweaks to make parsing actually work (gasp). This changes everything. I am abandoning the creation of a relax NG schema in favor of the battle-tested xsd. The error messages for xsd validation are far clearer than the rng ones.

The code included shows how much simpler the error messages are with the XSD validation option versus the RNG ones.

tagged: rng schema libxml2 validate error message rng schema libxml2 validate error message

Link:


Trending Topics: