English 中文(简体)
Flash coding problem
原标题:

I got some information in my Flash application from a php script. Flash displayed it as: Radioart=Mia Frejman - Ett hjärta - Ett Hjärta

The string contain some Swedish symbols. How I can output this normally?

best Vladimir

问题回答

It seems like the output of your php script is not utf-8, the default encoding for flash.

Radioart=Mia Frejman - Ett hjärta - Ett Hjärta is the latin-1 (ISO 8859-1) representation of the utf-8 string: Radioart=Mia Frejman - Ett hjärta - Ett Hjärta.

So make sure that the php outputs everything correct in utf-8 your flash will display it correctly as well.

This appears to be an encoding problem. I had the same issue while parsing an xml file in flash. The problem was the the xml file had not been save in utf-8. Perhaps you should:

  1. Check your php encoding
  2. Check the encoding of your text editor
  3. Is the data coming from a database? Check your database encoding

Your database connection might also be the problem. You can check encoding of your connection by running the script:

echo mysql_client_encoding($db);

And set it by

mysql_set_charset("utf8", $db);

(in case you are running MySQL of course)

That s an UTF-8 stream as it would be represented in ISO-8859-1. You may use ByteArray to decode UTF-8 into a string on the client side, if you can t figure out any other way to do this. This snippet seems to do the Right Thing(tm).

var ba: ByteArray = new ByteArray();
var receivedData: String = "Mia Frejman - Ett hjärta - Ett Hjärta";
for (var i: uint = 0; i < receivedData.length; i++)
    ba.writeByte(receivedData.charCodeAt(i));
ba.position = 0;
var decodedString: String = ba.readMultiByte(ba.length, "UTF-8");




相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签