|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2007-06-21 12:23 UTC] a_suhbold at yahoo dot com
Description:
------------
I have faced a problem.
i have created the following 2 php files.
1. index.php (i have saved as UTF-08 in notepad coz i want to display cyrillic symbols)
<?
........
echo "hello<br>".
echo "???????????? means hello in Russian language<br>";
require("test.php");
........
?>
2. test.php (i have saved as UTF-08 in notepad coz i want to display cyrillic symbols)
<?
........
echo "???? ? ????????? ????????? ????????<br>";
........
?>
-------------------------------------------
output:
hello
???????????? means hello in Russian language
???? ? ????????? ????????? ????????
is the unknown string
How can i remove the unknown string when i am using unicode.
-------------------------------------------
thx
Sukhee
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Dec 02 18:00:01 2025 UTC |
I have faced a problem. i have created the following 2 php files. 1. index.php (i have saved as UTF-08 in notepad coz i want to display cyrillic symbols) <? ........ echo "hello<br>". echo "???????????? means hello in Russian language<br>"; require("test.php"); ........ ?> 2. test.php (i have saved as UTF-08 in notepad coz i want to display cyrillic symbols) <? ........ echo "???? ? ????????? ????????? ????????<br>"; ........ ?> ------------------------------------------- output: hello ???????????? means hello in Russian language ???? ? ????????? ????????? ???????? is the unknown string How can i remove the unknown string when i am using unicode. ------------------------------------------- thx Sukhee