|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-01-05 22:21 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 23:00:01 2025 UTC |
I tried to parse the data from data.xml file but I have a weird problem: If my data look like this, it will parse fine: <data> test1, test2, test3</data> When I change my data to: <data> test1, test2, test2 </data> It won't work any more. What happened is the xml only parse the data right after the begin_tag, if the data on the new line after begin_tag, it just ignore. Thank you Toan