Voting

: six plus one?
(Example: nine)

The Note You're Voting On

rawsrc at gmail dot com
13 years ago
Hi,

For those who are looking for mb_str_replace, here's a simple function :
<?php
function mb_str_replace($needle, $replacement, $haystack) {
return
implode($replacement, mb_split($needle, $haystack));
}
?>
I haven't found a simpliest way to proceed :-)

<< Back to user notes page

To Top