XML Format help

I want to determinate if a xml is well-format and valid before export
it to
database.

how can i find if the xml feed is well formated one??
Damodhar [ Do, 03 April 2008 02:59 ] [ ID #1934893 ]

Re: XML Format help

Damodhar wrote:
> I want to determinate if a xml is well-format and valid before export
> it to
> database.
>
> how can i find if the xml feed is well formated one??
If you have the XML in a file, use an XML parser or editor with such a
parser. For instance, "XML Copy Editor" (see
http://xml-copy-editor.sourceforge.net/).

Best regards.
Dikkie Dik [ Do, 03 April 2008 12:42 ] [ ID #1934909 ]

Re: XML Format help

On Wed, 2 Apr 2008 17:59:32 -0700 (PDT), in comp.lang.php Damodhar
<damu.be [at] gmail.com>
<f7fcd25d-b8d4-4584-9758-80b02a85c8f7 [at] s8g2000prg.googlegroups.com>
wrote:

>| I want to determinate if a xml is well-format and valid before export
>| it to
>| database.
>|
>| how can i find if the xml feed is well formated one??

Open the xml file with your web browser (IE or Firefox).
-- ------------------------------------------------------------ -
jnorthau [at] yourpantsyahoo.com.au : Remove your pants to reply
-- ------------------------------------------------------------ -
Jeff North [ Do, 03 April 2008 14:10 ] [ ID #1934919 ]

Re: XML Format help

If it's an automatic task then just try this:

libxml_internal_errors(true);
$parsed_xml=simplexml_load_string($xml) //or
simplexml_load_file($path) if the xml is in a file
if ($parsed_xml)
//xml is valid, do your thing
else
//xml not valid
George Maicovschi [ Do, 03 April 2008 14:14 ] [ ID #1934920 ]
PHP » comp.lang.php » XML Format help

Vorheriges Thema: Probleme php html with quote '
Nächstes Thema: Re: using meta http-equiv in php