Tagged Questions
63
votes
6answers
2k views
What is normalized UTF-8 all about?
The ICU project (which also now has a PHP library) contains the classes needed to help normalize UTF-8 strings to make it easier to compare values when searching.
However, I'm trying to figure out ...
23
votes
5answers
1k views
Am I correctly supporting UTF-8 in my PHP apps?
I would like to make sure that everything I know about UTF-8 is correct. I have been trying to use UTF-8 for a while now but I keep stumbling across more and more bugs and other weird things that make ...
16
votes
11answers
11k views
How do I convert Word smart quotes and em dashes in a string?
I have a form with a textarea. Users enter a block of text which is stored in a database.
Occasionally a user will paste text from Word containing smart quotes or emdashes. Those characters appear in ...
14
votes
5answers
473 views
Exotic names for methods, constants, variables and fields - Bug or Feature?
after some confusion in the comments to
Is it safe to have 1 letter class names in PHP, e.g A, B, C
I thought I make into a question. According to the PHP manual, a valid class name should match ...
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 ...
11
votes
8answers
7k views
I need help fixing Broken UTF8 encoding
I am in the process of fixing some bad UTF8 encoding. I am currently using PHP 5 and MySQL
In my database I have a few instances of bad encodings that print like: î
The database collation is ...
11
votes
4answers
472 views
Are named entities in HTML still necessary in the age of Unicode aware browsers?
I did a lot of PHP programming in the last years and one thing that keeps annoying me is the weak support for Unicode and multibyte strings (to be sure, natively there is none). For example, ...
9
votes
4answers
871 views
How to Convert Arabic Characters to Unicode Using PHP
I want to to know how can I convert a word into unicode exactly like:
http://www.arabunic.free.fr/
can anyone know how to do that using PHP considering that Arabic text may contains ligatures?
...
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 ...
9
votes
2answers
8k views
Storing and displaying unicode string (हिन्दी) using PHP and MySQL
I have to store hindi text in a MySQL database, fetch it using a PHP script and display it on a webpage. I did the following:
I created a database and set its encoding to UTF-8 and also the collation ...
9
votes
3answers
2k views
How to reverse a Unicode string
It was hinted in a comment to an answer to this question that PHP can not reverse Unicode strings.
As for Unicode, it works in PHP
because most apps process it as
binary. Yes, PHP is 8-bit ...
8
votes
2answers
423 views
Unicode character in PHP string
This question looks embarrasingly simple, but I haven't been able to find an answer.
What is the PHP equivalent to the following C# line of code?
string str="\u1000";
(That creates a string with a ...
8
votes
3answers
180 views
Guides for dealing with Unicode in PHP5?
Hey everybody. I'm developing a new site (php5/mySQL) and am looking to finally get on the Unicode bandwagon. I'll admit to knowing next to absolutely nothing about supporting Unicode at the moment, ...
8
votes
4answers
601 views
PHP-GD: Dealing with Unicode characters
I am developing a web service that renders characters using the PHP GD extension, using a user-selected TTF font.
This works fine in ASCII-land, but there are a few problems:
The string to be ...
8
votes
4answers
2k views
Natural sorting algorithm in PHP with support for Unicode?
Is it possible to sort an array with Unicode / UTF-8 characters in PHP using a natural order algorithm? For example (the order in this array is correctly ordered):
$array = array
(
0 => ...
7
votes
1answer
75 views
How to split Tamil characters in a string in PHP
How do I split Tamil characters in a string?
When I use preg_match_all('/./u', $str, $results),
I get the characters "த", "ம", "ி", "ழ" and "்".
How do I get the combined characters "த", "மி" and ...
7
votes
2answers
251 views
Declaration to make PHP script completely Unicode-friendly
Remembering to do all the stuff you need to do in PHP to get it to work properly with Unicode is far too tricky, tedious, and error-prone, so I'm looking for the trick to get PHP to magically upgrade ...
7
votes
5answers
406 views
What is better for PHP developers - Unicode or UTF-8?
What is better for PHP developers - Unicode or UTF-8?
I am going to create an international CMS. So I am going to have clients all over the world. They will speak all possible languages.
What ...
7
votes
4answers
198 views
Which database and language is better at handling Unicode?
which database should I use, if my application is going to be in multiple languages (including Chinese, Japanese etc)? In other words, is MySQL better or worse than Postgres to handle unicode etc? ...
7
votes
2answers
414 views
How do I best remove the unicode characters that XHTML regards as non-valid using php?
I run a forum designed to support an international mathematics group. I've recently switched it to unicode for better support of international characters. In debugging this conversion, I've ...
7
votes
1answer
1k views
How to get the character from unicode value in PHP?
For example,
how to get the character corresponding to 010F?
7
votes
4answers
5k views
'Reliable' SMS Unicode & GSM Encoding in PHP
(Updated a little)
I'm not very experienced with internationalisation using PHP, it must be said, and a deal of searching didn't really provide the answers I was looking for.
I'm in need of working ...
6
votes
5answers
190 views
Preparing PHP application to use with UTF-8
UTF-8 is de facto standard for web applications now, but PHP this is not a default encoding for PHP (until 6.0). Most of the server is set up for the ISO-8859-1 encoding by default.
How to overload ...
6
votes
3answers
166 views
What are the benefits of PHP6 Unicode Identifiers
I was reading a nice slide titled Unicode & PHP6 and i found every new feature very good.
Except unicode identifers:
Am i missing something? Isn't this is evil for PHP script understanding ...
6
votes
4answers
6k views
How to decode Unicode escape sequences like “\u00ed” to proper UTF-8 encoded characters?
Is there a function in PHP that can decode Unicode escape sequences like "\u00ed" to "í" and all other similar occurrences?
I found similar question here but is doesn't seem to work.
6
votes
2answers
214 views
Validation of user input or ���������
We're letting users search a database from a single text input and I'm having difficulties in filtering some user supplied strings.
For example, if the user submits:
��������� lcd SONY
(Note the ...
6
votes
2answers
584 views
PHP detecting filesystem encoding
I need to save files with non-latin filenames on a filesytem, using PHP.
I want to make this work cross-platform. How do I know what encoding I can use to write the file? I understand many modern ...
5
votes
4answers
134 views
How characters are transmitted over a form?
<head>
<meta charset="ISO-8859-7">
</head>
I've been working with forms and see that the <meta charset="ISO-8859-7"> tag encode the text that will be typed within a text ...
5
votes
2answers
520 views
How to escape Chinese Unicode characters in URL?
I have Chinese users of my PHP web application who enter products into our system. The information the’re entering is for example a product title and price.
We would like to use the product title to ...
5
votes
3answers
152 views
UCA + Natural Sorting
I recently learnt that PHP already supports the Unicode Collation Algorithm via the intl extension:
$array = array
(
'al', 'be',
'Alpha', 'Beta',
'Álpha', 'Àlpha', 'Älpha',
'かたかな',
...
5
votes
5answers
629 views
Trim unicode whitespace in PHP 5.2
How can I trim a string(6) " page", where the first whitespace is a 0xc2a0 non-breaking space?
I've tried trim() and preg_match('/^\s*(.*)\s*$/u', $key, $m);.
Another question: How can I reliably ...
5
votes
3answers
2k views
PHP: Convert unicode codepoint to UTF-8
I have my data in this format: U+597D or like this U+6211. I want to convert them to UTF-8 (original characters are 好 and 我). How can I do it?
5
votes
2answers
1k views
regexp with russian lang
I can't solve my problem with regexp.
Ok, when i type:
$string = preg_replace("#\[name=([a-zA-Z0-9 .-]+)*]#","$name_start $1 $name_end",$string);
everything is ok, except situation with Russian ...
5
votes
4answers
560 views
What is the best way to split a string into an array of Unicode characters in PHP?
In PHP < 6, what is the best way to split a string into an array of Unicode characters? If the input is not necessarily UTF-8?
I want to know whether the set of Unicode characters in an input ...
5
votes
5answers
2k views
Some Basic Python Questions
I'm a total python noob so please bear with me. I want to have python scan a page of html and replace instances of Microsoft Word entities with something UTF-8 compatible.
My question is, how do you ...
4
votes
2answers
31 views
PHP string comparison between two different types of encoding
I am attempting to match a string I know to a web page title in php.
I have the following string:
ℛobinhood
I have a page title that looks like this:
ℛobinhood
but is actually encoded like this ...
4
votes
4answers
108 views
Unicode in PHP?
I heard PHP has very poor Unicode support.
So what does it take to make a PHP 5 built application Unicode supported under PHP 5.3+?
Would mbstring be the only option here?
How has Facebook or Yahoo ...
4
votes
2answers
87 views
Ways to simulate the yet unimplemented <bdi> HTML tag?
The purpose of the <bdi> tag in HTML5 is to isolate bidirectional text from it's context. And that's precisely what I'm looking for.
A left-to-right username displays like this:
Welcome, ...
4
votes
1answer
258 views
PHP utf8_encode() converts spaces to non-breaking spaces
Perfectly simple: utf8_encode($string) replaces regular spaces with non-breaking spaces ("\u00a0"). I tried filtering the result with str_replace:
str_replace("\u00a0", " ", utf8_encode($string))
...
4
votes
2answers
216 views
PHP: How to create unicode filenames
I'm trying to create files with Unicode characters in there filenames. I don't quite know what encoding I should use, or if it's possible at all.
I have this file, saved in latin1 encoding:
$h = ...
4
votes
1answer
370 views
Recognizing text as Simplified vs. Traditional Chinese
Given a block of text that's known to be Chinese and encoded in UTF-8, is there a way to determine if it's Simplified or Traditional?
4
votes
4answers
330 views
PHP equivalent of Java's Character.getNumericValue(char c)?
Is there a PHP equivalent of Java's Character.getNumericValue(char c)?
4
votes
2answers
540 views
Unicode characters become question marks after inserting into database
When I insert some text written in unicode into database, they become question marks. Database encoding is set to utf-8. What else may be incorrect? When I check in phpmyadmin there are question marks ...
4
votes
6answers
1k views
How to check if the word is Japanese or English using PHP
I want to have different process for English word and Japanese word in this function
function process_word($word) {
if($word is english) {
/////////
}else if($word is japanese) {
...
4
votes
2answers
534 views
How do I create JavaScript escape sequences in PHP?
I'm looking for a way to create valid UTF-16 JavaScript escape sequence characters (including surrogate pairs) from within PHP.
I'm using the code below to get the UTF-32 code points (from a UTF-8 ...
4
votes
3answers
268 views
Using Unicode with PHP
How do I use Unicode with PHP?
I want to store Unicode value in a PHP variable but it output some question marks.
What is the solution?
4
votes
2answers
912 views
RegEx: \w - “_” + “-” in UTF-8
I need a regular expression that matches UTF-8 letters and digits, the dash sign (-) but doesn't match underscores (_), I tried these silly attempts without success:
([\w-^_])+
([\w^_]-?)+
...
4
votes
6answers
937 views
Truncate a UTF-8 string to fit a given byte count in PHP
Say we have a UTF-8 string $s and we need to shorten it so it can be stored in N bytes. Blindly truncating it to N bytes could mess it up. But decoding it to find the character boundaries is a drag. ...
4
votes
2answers
264 views
how can I deal with unicode in PHP without mbstring extension
I am using a shared hosting service to host my site so I can't get direct access to PHP configuration or install any extension. So my problem is with utf-8 strings that can't be processed by standard ...