|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-12-03 11:16 UTC] derick@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 09 09:00:01 2025 UTC |
Description: ------------ The string "example & string" is traslated by utf8_encode as "example & string" (no change) When opening xml file with IExplorer or dom functions you get an error on '&' symbol The correct traslation must be: "example & string" Reproduce code: --------------- utf8_encode("example & string") Expected result: ---------------- "example & string" Actual result: -------------- "example & string"