Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
201 views

mb_convert_encoding, undefined function while mbstring is enabled

I have a server (Ubuntu 11.10 x64) running PHP 5.3.8 with Apache2 / MySQL. I'm currently working on a project where I'm required to do some specific character encoding, but I found out that none of ...
4
votes
3answers
7k views

PHP Multi Byte str_replace?

I'm trying to do accented character replacement in PHP but get funky results, my guess being because i'm using a UTF-8 string and str_replace can't properly handle multi-byte strings.. ...
2
votes
2answers
210 views

Character Encoding UTF8 Issue

I am reading an rss feed http://beersandbeans.com/feed/ The feeds says it is UTF8 format, and I am using simplepie rss to import the content When i grab the content and store it in $content I perform ...
2
votes
4answers
961 views

Windows API: ANSI and Wide-Character Strings — Is it UTF8 or ASCII? UTF-16 or UCS-2 LE?

I'm not quite pro with encodings, but here's what I think I know (though it may be wrong): ASCII is a 7-bit, fixed-length encoding, with the characters you can find in ASCII charts. UTF8 is an ...
2
votes
2answers
471 views

strpos searching for unicode in PHP (and handling inline UTF-8)

I am having a problem dealing with a simple search for a two character unicode string (the needle) inside another string (the haystack) that may or may not be UTF-8 Part of the problem is I don't ...
2
votes
8answers
673 views

Using UTF-8 charset with PHP - are mb functions required?

These past few days I've been working toward converting my PHP code base from latin1 to UTF-8. I've read the two main solutions are to either replace the single byte functions with the built in ...
1
vote
1answer
113 views

multi-byte function to replace preg_match_all?

I'm looking for a multi-byte function to replace preg_match_all(). I need one that will give me an array of matched strings, like the $matches argument from preg_match(). The function mb_ereg_match() ...
1
vote
2answers
146 views

PHP method for stripping duplicate chars from a multibyte string?

Arrrgh. Does anyone know how to create a function that's the multibyte character equivalent of the PHP count_chars($string, 3) command? Such that it will return a list of ONLY ONE INSTANCE of each ...
1
vote
1answer
870 views

Can the PHP value mbstring.internal_encoding be set from a htaccess file?

The following PHP command used to enable function overloading for multibyte data doesn't seem to work when set from inside a .htaccess file: php_value mbstring.func_overload 7 I read there was a bug ...
0
votes
2answers
59 views

How to handle multibyte string in Python

There are multibyte string functions in PHP to handle multibyte string (e.g:CJK script). For example, I want to count how many letters in a multi bytes string by using len function in python, but it ...
0
votes
1answer
54 views

Weird characters appear after I use php's mb_substr() on a string

I'm developing a web site with PHP (5.3.5, Ubuntu) and all the content is in Spanish. I would like to cut the text when it doesn't fit the space designated for it. I have the following meta tag in ...
0
votes
0answers
42 views

mb_strpos, mb_detected encoding terminate script

I am calling mb_strpos() on a UTF-8 encoded string fetched from the Database (Mysql) and the script for some reason stops. Same thing happens when i try to detect the string encoding with a call to ...
0
votes
2answers
63 views

Website conversion help - UTF-8, Covering all the bases… functions, metas, and sql utf-8

You all did such an amazing job answering a question earlier I thought - I'll ask this one before I get too deep in my conversion only to find out I did something wrong. I only have 3 pages to a ...
0
votes
2answers
98 views

Detecting, Saving, Outputting UTF8 with PHP

I, like many other PHP developers have had issues with character encoding, the question will outline the steps I go through to ensure that my data is saved and outputted as UTF8. I would like any ...
0
votes
1answer
160 views

Multibyte extension isn't enabled

how can i enable Multibyte extension on godaddy server?
0
votes
0answers
111 views

shifting a byte array by 4 bits using multibytes access

Problem Statement : We want to left/right shift an array (of size 1~32 bytes) by 4 bits (a nibble). Example: Input array: |12|34|56|78|91|xxxxxx Resultant array: |01|23|45|67|89|1x|xxxx ...
0
votes
2answers
123 views

REGEXP to convert any 3 chars or less word to wordVVV

I am trying to convert any occurrence of a word with 3 chars or less to the same word with the string VVV attached to it. Example: for -> forVVV I am using none Latin chars (UTF8), hence the MB. What ...