> 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
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
2 matches
Mail list logo