mirror of
https://github.com/friendica/friendica
synced 2024-11-10 04:22:54 +00:00
parsing multi-byte strings with xmlify
This commit is contained in:
parent
774a78dbde
commit
18f71c1050
1 changed files with 3 additions and 2 deletions
|
@ -175,8 +175,9 @@ if(! function_exists('xmlify')) {
|
|||
function xmlify($str) {
|
||||
$buffer = '';
|
||||
|
||||
$str_array = preg_split('//u', $str, -1, PREG_SPLIT_NO_EMPTY);
|
||||
foreach($str_array as $char) {
|
||||
$len = mb_strlen($str);
|
||||
for($x = 0; $x < $len; $x ++) {
|
||||
$char = mb_substr($str,$x,1);
|
||||
|
||||
switch( $char ) {
|
||||
|
||||
|
|
Loading…
Reference in a new issue