Sun Oct 26, 2008 6:58 pm
<?php
function cdata_handler ($parser, $data) {
print ($data);
}
$xml = "<para>some character data</para>";
$parser = xml_parser_create ();
xml_set_character_data_handler ($parser, 'cdata_handler');
if (xml_parse ($parser, $xml, true))
print ("Your XML document is well-formed.");
else
print ("Your XML document is not well-formed.");
xml_parser_free ($parser);
?>
|
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com
Powered by phpBB © phpBB Group.