Tagged Questions
13
votes
7answers
3k views
What factors make PHP Unicode-incompatible?
I am able use UTF-8 characters just fine in my scripts. As a matter of fact it is possible to have names of variables and functions contain Unicode characters. There is also the mb_string extension, ...
11
votes
2answers
653 views
PHP6 and its future: How to best handle Unicode in a future proof way?
A week ago there was an interesting post on the PHP-Internals list:
http://marc.info/?l=php-internals&m=125842046913842&w=2
I've been thinking for a while what we
should do about PHP6 ...
9
votes
3answers
300 views
Japanese/chinese email addresses?
I'm making some site which must be fully unicode.
Database etc are working, i only have some small logic error.
Im testing my register form with ajax if fields are valid, in email field i check with ...
3
votes
2answers
974 views
copy text (Indian language- GUjarati) from word document to web page text area problem
I am developing one site in Indian language (Gujarati).
My problem is as below:
My client wants that they able to copy Gujarati text from word document and paste into the Text area.
But when i copy ...
2
votes
1answer
164 views
Why PHP script doesn't show Unicode text in WAMP/MySQL Server
When I installed a new WAMP server(2.1), I can only see ????? characters instead of some Unicode text. In phpMyAdmin I can see text correctly in database (UTF8).
It worked in an earlier WAMP version ...
1
vote
1answer
125 views
ufpdf in xampp 1.7.2
I used ufpdf to generate pdf files with Unicode/UTF-8 in PHP. It works properly in xampp 1.6.7 for windows.
However, I tested it in xampp 1.7.2(window), it doesn't work and I got like that:
...
1
vote
4answers
1k views
\w in PHP preg_replace covers only second byte of UTF-8 chars
we have this code:
$value = preg_replace("/[^\w]/", '', $value);
where $value is in utf-8. After this transformation first byte of multibyte characters is stripped. How to make \w cover UTF-8 ...
0
votes
2answers
34 views
Php5 - Unicode string length
I need to get correct length of unicode text getting via HTTP Post/get.
"हेल्लो स्टैक ओवरफ्लो"
When I set a browser's character encoding as Unicode, then
mb_strlen($text) gives me correct length of ...
0
votes
1answer
51 views
How to convert character codes starting with /u using PHP
I cannot find a way to display/echo text with a character encoding such as \u02792.
Below is the json data :
{"id":"65645234","firstName":"\u0906\u0926\u093f\u0924\u094d\u092f"}
When i try to echo ...
0
votes
2answers
191 views
Any way to return PHP `json_encode` with encode UTF-8 and not Unicode?
Any way to return PHP json_encode with encode UTF-8 and not Unicode?
$arr=array('a'=>'á');
echo json_encode($arr);
mb_internal_encoding('UTF-8');and $arr=array_map('utf8_encode',$arr); does not ...
0
votes
0answers
196 views
Unicode Chinese not displaying in PHP?
I wrote this PHP function to return results that contain a certain string. It works perfectly when the results are in English. However it doesn't display anything when I search for Chinese articles. I ...
0
votes
0answers
181 views
Code Igniter 2.0 & utf8 index
I have a website developed with CI 2.0 (beta), where i had alphabetical indexes. Clicking on alphabet , gave the results. Our code worked well till i updated my system folder to CI 2.0 stable, now ...
0
votes
2answers
137 views
Characters with accents keep appearing as “�”
I'm using a simple php script to scour an RSS feed, store the scoured data to a temporary cache flat file, then display it along the side of my website. However all the characters with accents appear ...
0
votes
4answers
110 views
Converting to and from Unicode in PHP
Hey, I'm using php 5 and need to communicate with another server that runs completely in unicode. I need to convert every string to unicode before sending it over. This seems like an easy task, but I ...