|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-05-17 17:59 UTC] lyric@php.net
[2001-05-17 18:31 UTC] matthew dot kane at bigfoot dot com
[2001-11-21 19:39 UTC] mfischer@php.net
[2001-11-30 20:51 UTC] mfischer@php.net
[2001-12-01 14:46 UTC] mfischer@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 02 23:00:02 2025 UTC |
I am running the latest Win32 binaries from the php.net download page. I am using the ISAPI module on IIS5. In php.ini I enabled DOMXML by uncommenting the appropriate line. Calling the children function on a node that has a CDATA node as a child results in an access violation. Here's a script that reproduces the problem: $doc = xmldocfile('http://tbhbuilding.blogspot.com'); $root = $doc->root(); $children = $root->children(); $children = $children[1]->children(); print_r($children[1]->children()); I would have generated a gdb backtrace if the instructions for doing so explained how to do it with the ISAPI module.