When I try and execute this code to print out an Arabic string: print("إضافة");
I get this output: إضاÙØ©
. If I utf8_decode() it I'll get ?????
. I have "AddLanguage ar" in my apache configuration but it doesn't help. How do i print out this Arabic string?
相关问题
- Views base64 encoded blob in HTML with PHP
- Laravel Option Select - Default Issue
- PHP Recursively File Folder Scan Sorted by Modific
- Can php detect if javascript is on or not?
- Using similar_text and strpos together
You may also want to check your browser font if it has Arabic support. Stick to common fonts like Arial Unicode and Times New Roman.
Well,
First: Add by the beginning of HTML page
second: if you are using AJAX encode data using encodeURIComponent
Third: First line of your PHP page should be
and decode the data sent to PHP using urldecode
Regards,
It might be necessary to indicate to the browser which charset you are using -- I'm guessing it's UTF-8.
IN order to achive that, you might try putting this portion of code at the beginning of your script, before any output is generated :
[
utf8_decode][1]
will try to decode your string from UTF-8 to latin1, which is not suited for Arabic characters -- hence the'?'
characters.Also set your page language to utf8 eg:
and then see it if worked. If that still doesn't work, go and check this out, it is complete solution for the arabic language using PHP:
http://www.ar-php.org/en_index_php_arabic.html
You may want to check out this too:
http://www.phpclasses.org/browse/package/2875.html
You may want to set
in your
php.ini
. Default charset directive instructs the server to produce correct content type header.You can also do it in runtime: