PHP Multi-Byte String

Status
Not open for further replies.

adobed50081

New Member
Messages
3
Reaction score
0
Points
0
Hi,
I have been around many webhosting companys and none of them would care what i am going to say now.
Does this server has Multi-Byte String Enabled And Installed in PHP?
http://php.net/manual/en/book.mbstring.php
this is really important for my website!
i am using http://www.webspell.org has a CMS
it had a few security issues but now with the updates its now almost all fixed. i even did my own password Hashing in PHP
so i just need that extension enabled to make my CMS work else the CMS will always say there is an error in page encoding.
so please dont be like other hosts since i am sseing this is a very good company i was thinkin if you guys could be my friend and help me installing that extension into PHP.
Thanks , Mac
 

descalzo

Grim Squeaker
Community Support
Messages
9,373
Reaction score
326
Points
83
PHP:
<?php

$str = "a test string" ;

$cap_str = mb_convert_case(  $str  ,  MB_CASE_UPPER   );

echo $cap_str ;
?>

Prints out A TEST STRING on Chopin, so at least that one function seems to be enabled.
 
Status
Not open for further replies.
Top