0
votes
5answers
55 views
Are the PHP preg_functions multibyte safe?
There are no multibyte 'preg' functions available in PHP, so does that mean the default preg_functions are all mb safe? Couldn't find any mention in the php documentation.
1
vote
3answers
110 views
rename not supporting multi-byte characters
If I write:
rename('php109.tmp','test.jpg');
then it's fine and working.
but if I change it into:
rename('php109.tmp','中文.jpg');
it'll report "No such file or directory...".
But the multi-byte …
1
vote
1answer
34 views
Finding bytes in strings with PHP’s mbstring.func_overload on
I have PHP configured with mbstring.func_overload = 7, so all the single-byte-string functions are mapped to their multi-byte equivalents. But I still sometimes need to treat strings as byte arrays; …
0
votes
3answers
79 views
How do I make emacs display a multi-byte encoded file, properly? Is it mule?
When I open a multi-byte file, I get this:
1
vote
0answers
81 views
Search MultiByte Strings using RegEx C# Winforms
I am working on html documents using WebBrowser Control, I need to make a utility which searches a word and highlights it in the browser. It works well if the string is in English, but for strings in …
0
votes
2answers
52 views
What do these PHP mbstring settings do?
I'm trying to figure out exactly what these php.ini settings do. What happens when they're set to different values? When are they necessary? When are they harmful?
mbstring.language
…
0
votes
1answer
55 views
Converting accented characters in PostgreSQL?
Is there an existing function to replace accented characters with unadorned characters in PostgreSQL? Characters like å and ø should become a and o respectively.
The closest thing I could find is …
0
votes
1answer
19 views
PHP mbstring.func_overload vs using mbstring functions
I want to conform my site's string handling to support other languages per UTF-8. It seems that the best way to do this is to forsake all the standard string functions.
So I have two options, I can …
0
votes
2answers
88 views
Detect chinese (multibyte) character in the string
$str = "This is a string containing 中文 characters. Some more characters - 中华人民共和国 ";
How do I detect chinese characters from this string and print the part which starts with the first character and …
5
votes
4answers
140 views
How does UTF-8 “variable-width encoding” work?
The unicode standard has enough code-points in it that you need 4 bytes to store them all. That's what the UTF-32 encoding does. Yet the UTF-8 encoding somehow squeezes these into much smaller …
0
votes
2answers
61 views
Replace “abc123def” with “abc 123 def” in multibyte string
Normally I would just do this.
$str = preg_replace('#(\d+)#', ' $1 ', $str);
If I knew it was going to be utf-8 I would add a lowercase "u" modifier to the pattern and I think I would be good. But …
-1
votes
3answers
41 views
How to make jscon_encode work with multibyte characters?
echo '<a title=' .json_encode("按时间先后进行排序") . '>test</a>';
The above will generate something like "\u6309\u65f6\u95f4\u5148\u540e\u8fdb\u884c\u6392\u5e8f" and it's a mess!
0
votes
1answer
35 views
Why is there an extra empty row when splited by multibyte punctuation?
Try this:
$pattern = '/[\x{ff0c},]/u';
//$string = "something here ; and there, oh,that's all!";
$string = 'hei,nihao,a ';
echo '<pre>', print_r( preg_split( $pattern, $string ), 1 ), …
0
votes
2answers
69 views
How to convert multi-byte punctuations to single byte ones with PHP?
For example,both , and , are commas,but the first one takes 2 byte,while the second one only 1.
How to convert the 2 byte one to 1 byte?
3
votes
3answers
66 views
How to get the exact number of multibyte characters?
I tried:
mb_strlen('普通话');
strlen('普通话');
both of them output 9,while in fact there are only 3 characters.
What's the right way to count characters?
