|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2004-12-01 18:46 UTC] johannes@php.net
 | |||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 19:00:02 2025 UTC | 
Description: ------------ SimpleXML messes up at least ISO-8859-15 charset. Reproduce code: --------------- <?PHP $xmlData = '<?xml version="1.0" encoding="ISO-8859-15" standalone="yes" ?> <dataSegment> <Cdata>????</Cdata> </dataSegment> '; $xml = simplexml_load_string($xmlData); echo $xml->Cdata."\n"; ?> Expected result: ---------------- ???? Actual result: -------------- ? ? ΓΆΓΆ