|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2007-12-25 02:09 UTC] svimik at mail dot ru
[2007-12-25 10:16 UTC] derick@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Nov 03 19:00:02 2025 UTC |
Description: ------------ I found a problem with symbol \xC2\xB4 In text editors this symbol looks like "`". But iconv() stops converting at this symbol. The code is below. It returns "Soil" instead of "Soil?s Song". Reproduce code: --------------- echo iconv('utf-8', 'cp1251', "Soil\xC2\xB4 Song"); Expected result: ---------------- Soil Actual result: -------------- Soil`s Song