The mbstring tag has no wiki summary.
0
votes
0answers
35 views
php-fpm doesn't load mbstring module on Gentoo
I'm new on Gentoo, and I install nginx\php\fastcgi by emerge. after that, i was run phpinfo() and found there is no mbstring, then I was compile it by set USE=unicode. then I saw [mbstring] in ...
1
vote
1answer
102 views
UTF-8 text is garbled when form is posted as multipart/form-data in PHP
I have a PHP script to publish articles. It was working perfectly fine until we added the file uploading support. To enable uploading of files, we had to change enctype of tag to multipart/form-data. ...
0
votes
2answers
34 views
Overriding PHP's Default String Functions with mb_string functions
So I've posted several questions related to making already existing software written in PHP to be updated to support unicode / utf8. One of the solutions is to override PHP's default string functions ...
3
votes
3answers
220 views
PHP: mb_strtoupper not working
I have a problem with UTF-8 and mb_strtoupper.
mb_internal_encoding('UTF-8');
$guesstitlestring='Le Courrier de Sáint-Hyácinthe';
$encoding=mb_detect_encoding($guesstitlestring);
if ...
-2
votes
4answers
186 views
How to check if mbstring is enabled or not [closed]
I would like to know how can I check if mbstring is enabled or not by using a php script
0
votes
1answer
169 views
Install mbstring/libmbfl on PHP 5.3.14 (Apache2.2 version) on Windows server
I want to use simpleHTMLDom in my development environment, a Windows server running Apache 2.2 and PHP 5.3.14 (downloaded from Apache). I want to enable mbstring (extension=php_mbstring.dll), but I ...
0
votes
0answers
119 views
mb_ereg_replace code does not work with changed PHP configuration
I'm starting to program in PHP in order to set up a new site of mine. I'm using UTF-8 since it's a site in Mexico. At the beginning of my PHP code I specify the following:
...
4
votes
2answers
250 views
mb_convert_encoding() not working with phpunit
For some reason, when running mb_convert_encoding in phpunit, I am getting unexpected results. For example doing the following:
var_dump( mb_convert_encoding( utf8_decode( 'ö' ), 'UTF-8' ) === 'ö' )
...
0
votes
1answer
100 views
mbstring.php and mb_strimwidth issue
Months ago I made a short code that uses mb_strimwidth() to exactly fit some text into a table cell, putting dots at the end of a truncated string.
Now, after some times, I tried to execute that same ...
6
votes
2answers
702 views
PHP mb_substr() not working correctly?
This code
print mb_substr('éxxx', 0, 1);
prints an empty space :(
It is supposed to print the first character, é. This seems to work however:
print mb_substr('éxxx', 0, 2);
But it's not right, ...
0
votes
0answers
90 views
mpdf php variable inserting not working
Before, I'm using mpdf in xampp 1.6.8. Coding something like below is working.
$title = 'Turtle';
$html = '<h1>Title: '.$title.'</h1>';
$mpdf->WriteHTML($html);
...
0
votes
1answer
117 views
usage of “mbstring.script_encoding” config
What is the usage of "mbstring.script_encoding" config? Is it diffrent from mbstring.internal_encoding?
http://php.net/manual/en/mbstring.configuration.php
1
vote
1answer
380 views
mb_convert_case undefined function (Symfony2 FOS/UserBundle)
On my Symfony2 application, I am receiving an error:
Fatal error: Call to undefined function FOS\UserBundle\Util\mb_convert_case() in ...
3
votes
1answer
150 views
When do I need to enable mbstring in PHP?
mbstring extension provides enhanced support for Simplified Chinese,
Traditional Chinese, Korean, and Russian in addition to Japanese.
I tried displaying a Japanese character (which I copied ...
1
vote
0answers
62 views
substring utf-8 characters with alphanumeric character up to 10 words
I have a problem with getting a substring of this string:
GMOクラウドの芦田です。前回、OpenSocialに対応したSNSの「OpenPNE」をインストールしたので、今回はソーシャルアプリを作ってOpenPNE上で公開してみます。また、作ったアプリをmixiアプリとしてmixiにも登録してみましょう。
I just wanted ...
13
votes
2answers
171 views
PHP Security: how can encoding be misused?
From this excellent "UTF-8 all the way through" question, I read about this:
Unfortunately, you should verify every submitted string as being valid
UTF-8 before you try to store it or use it ...
0
votes
0answers
400 views
Call to undefined function FOS\UserBundle\Util\mb_convert_case()
I'm getting error
Call to undefined function FOS\UserBundle\Util\mb_convert_case() app_path/vendor/bundles/FOS/UserBundle/Util/Canonicalizer.php on line 18
It occurs when I try to load fixtures.
...
0
votes
1answer
1k views
Ensure that PHP is compiled with php_mbstring.dll enabled
I'm currently experiencing error on my application using php. here is the error message
Error - mPDF requires mb_string functions. Ensure that PHP is compiled with php_mbstring.dll enabled.
I'm ...
1
vote
1answer
142 views
PHP utf-8 best practices and risks for distributed web applications
I have read several things about this topic but still I have doubts I want to share with the community.
I want to add a complete utf-8 support to the application I developed, DaDaBIK; the application ...
3
votes
1answer
91 views
How to check if a string can safely be converted in another character set without loss?
Is it possible, prior to converting a string from a charset to another, to know whether this conversion will be lossless?
If I try to convert an UTF-8 string to latin1, for example, the chars that ...
2
votes
3answers
197 views
PHP string functions vs mbstring functions
I have an application that has so far been in English only. Content encoding throughout templates and database has been UTF-8. I am now looking to internationalize/translate the application into ...
0
votes
1answer
138 views
What is the preferable character encoding order for mb_detect_encoding( ) in php
What is the preferable character encoding order to be passed as second argument of mb_detect_encoding( )
I am asking this because some character encoding overlap others like ASCII is returned for UTF ...
1
vote
0answers
476 views
Cannot load mbstring module
Running a script in CLI I receive this error:
PHP Fatal error: Call to undefined function mb_detect_encoding() <script path/name here>
Some background.
PHP 5.3.10 (cli) (built: Feb 2 2012 ...
2
votes
3answers
12k views
How to install PHP mbstring on CentOS 6.2
How do I install mbstring with PHP on CentOS 6.2
I've tried:
$ sudo yum install php-mbstring
Loaded plugins: fastestmirror, security
Loading mirror speeds from cached hostfile
* base: ...
0
votes
0answers
278 views
PHP-FPM returns different result from command line
During installation of the program (owncloud), it says no mbstring module installed.
So I checked, but I have already installed in my PHP.
The way that I found (in the installation script) to check ...
4
votes
5answers
1k views
Multibyte trim in PHP?
Apparently there's no mb_trim in the mb_* family, so I'm trying to implement one for my own.
I recently found this regex in a comment in php.net:
/(^\s+)|(\s+$)/u
So, I'd implement it in the ...
0
votes
1answer
3k views
PHP :mbstring module install
I have tried to install the mbstring module for PHP. I have entered the below commands:
yum install php-mbstring
/usr/local/apache/bin/apachectl restart
Module is now installed but the errors has ...
0
votes
1answer
465 views
how to enable php mb_string only for 1 host?
I have a centOS machine with cPanel. We have compiled PHP with mb_string and it works fine. We want to disable it in all hosting accounts except one, So we have disabled it in php.ini , but want to ...
2
votes
4answers
961 views
Php cannot find way to split utf-8 strings
i just started dabbling in php and i'm afraid i need some help to figure out how to manipulate utf-8 strings.
I'm working in ubuntu 11.10 x86, php version 5.3.6-13ubuntu3.2. I have a utf-8 encoded ...
1
vote
1answer
2k views
Replacing invalid UTF-8 characters by question marks, mbstring.substitute_character seems ignored
I would like to replace invalid UTF-8 chars with quotation marks (PHP 5.3.5).
So far I have this solution, but invalid characters are removed, instead of being replaced by '?'.
function ...
0
votes
1answer
658 views
Converting Unicode reference to UTF-8 character in PHP with mbstring
I have a set of data inside a database which has been input with unicode characters, but they were interpreted as a string. That is, where there should be an apostrophe ’ I've actually got \u2019
So ...
0
votes
2answers
298 views
php finding closest space char after mb_substr()
i need to cut the string approximately at 160 characters, but i want to do the cut off through closest space character. The task is worsened by working UTF-8 font (mb_ function). My code is following:
...
4
votes
1answer
240 views
what is filtering invalid utf8 from my PHP website?
My website is fully converted to use utf-8, (mysql, http headers, PHP mb_string etc).
Im doing some penetration testing and trying to POST invalid utf to one of the scripts (using BurpSuite).
But ...
3
votes
1answer
78 views
Include my own mb_string functions or use PHP's defaults?
For a public app - do you think it's a good idea to assume the mb_string extension is enabled on all servers (or almost all, like 95%)?
Are there hosts out there that disable this extension?
1
vote
1answer
6k views
How to enable mbstring from php.ini? [closed]
I have real difficulties with enabling mbstring extension on my localhost.
I'm using XAMPP 1.7.4, for Windows, which has PHP 5.3.5, and tried to edit my php.ini file according to the documentation ...
2
votes
2answers
307 views
how to make a string lowercase without changing url
I'm using mb_strtolower to make a string lowercase, but sometimes text contains urls with upper case. And when I use mb_strtolower, of course the urls changing and not working.
How can I convert ...
1
vote
1answer
180 views
mb_ereg_search_init working as single-byte?
Check this snippet:
mb_internal_encoding("UTF-8");
mb_regex_encoding("UTF-8");
mb_ereg_search_init('καλημέραCCC', 'C+');
$pos = mb_ereg_search_pos();
echo $pos[0];
(Please don't comment on this ...
0
votes
1answer
490 views
Compiling PHP with extensions
Can anyone give me any pointers on why the following ./configure settings do not appear to actually affect my build of PHP?
Details:
php-5.3.5
Compiling in order to use php-cgi on a per-domain ...
0
votes
6answers
21k views
How to write file in UTF-8 format?
I have bunch of files that are not in UTF-8 encoding and I'm converting a site to UTF-8 encoding.
I'm using simple script for files that I want to save in utf-8, but the files are saved in old ...
3
votes
1answer
3k views
How do I enable mbstring extension on PHP 5, Fedora server
I need to add the mbstring extension to an install of PHP 5.2.6 on Apache/2.2.11 (Fedora). We have dynamic extensions enabled so I really think all I need is the .so file and .ini files, correct? Can ...
0
votes
1answer
3k views
Missing mbstring PHP extension when installing phpMyAdmin on Mac
http://stackoverflow.com/questions/4327230/phpmyadmin-install-errors
Having some issues with installing phpMyAdmin. I would like to resolve the following issue, but don't have a clue where to start ...
0
votes
1answer
589 views
The data could not be converted to UTF-8 error
I was trying to parse Smsugsmug RSS/ATOM feed using Simplepie php parser ( http://simplepie.org/ ) and am getting error
"The data could not be converted to UTF-8. You MUST have either the iconv or ...
2
votes
4answers
3k views
PHP: Call to undefined function mb_strlen() - on custom compiled PHP with mbstring enabled
I have this custom compiled PHP (v5.3.3) with the following extensions enabled (via configure):
./configure
--prefix=/usr/local/php5.3.3
--with-config-file-path=/usr/local/apache2/conf
...
6
votes
1answer
1k views
iconv or mbstring?
Which multibyte-handling library should I use : iconv or mbstring ?
After some Googling I didn't find enough arguments to convince me to use one particularly, and I could not get any benchmark (and ...
0
votes
2answers
2k views
mb_strlen() is it enough?
When counting the length of a utf-8 string in php i use mb-strlen() ,
example:
if (mb_strlen($name, 'UTF-8') < 3) {
$error .= 'Name is required. Minimum of 3 characters required';
}
As the ...
1
vote
3answers
707 views
Does Zend Framework application need mbstring for UTF8 support?
I'm building a web app in zend framework that needs UTF8 support for all languages.
This seems to work fine except for functions like stripslashes and such.
On this URL, they talk about using ...
3
votes
1answer
509 views
php mb_convert_case() keep words that are in uppercase
Assuming I have a string "HET1200 text string" and I need it to change to "HET1200 Text String". Encoding would be UTF-8.
How can I do that? Currently, I use mb_convert_case($string, MB_CASE_TITLE, ...
0
votes
1answer
548 views
mb_internal_encoding() not available though configured?
I'm having problem with mbstring in my Apache2.2/Win7/PHP5.3 setup, though I think it's correctly configured in my php.ini:
extension_dir = "ext"
extension=php_mbstring.dll
I get the following:
...
5
votes
3answers
2k views
PHP: Split multibyte string (word) into separate characters
Trying to split this string "主楼怎么走" into separate characters (I need an array) using mb_split with no luck... Any suggestions?
Thank you!
1
vote
2answers
951 views
UTF-8, and mbstring extension in php
While I was converting my latin-1 mysql database into utf-8 i came across this article (http://developer.loftdigital.com/blog/php-utf-8-cheatsheet)
please note I have successfully converted my ...
