Re: [PHP] XML methods(SAX/expat)

2001-02-08 Thread Richard Lynch
> while ($data = fread($fp,1)) // yes, I know you shouldn't use '1', but it's > an example > { >xml_parse($parser, $data,feof($fp)); > } > > ie, should I set a flag if the CDATA's base64 encoded to persist over > multiple CDATA events, or does it wait for the closing tag and send all > of the

[PHP] XML methods(SAX/expat)

2001-02-05 Thread [EMAIL PROTECTED]
When parsing a CDATA field that's being read in from a file, if the fread() buffer fills up, does it make two calls to the CDATA or does it wait for the closing tag to show up before firing off to the handler? while ($data = fread($fp,1)) // yes, I know you shouldn't use '1', but it's an example