Page MenuHomeIn-Portal Phabricator

in-portal
No OneTemporary

File Metadata

Created
Thu, Nov 20, 4:45 PM

in-portal

Index: branches/RC/core/kernel/utility/multibyte.php
===================================================================
--- branches/RC/core/kernel/utility/multibyte.php (revision 10669)
+++ branches/RC/core/kernel/utility/multibyte.php (revision 10670)
@@ -1,54 +1,59 @@
<?php
if (!function_exists('mb_internal_encoding')) {
function mb_internal_encoding ($encoding = null) {
}
+ function mb_convert_encoding($str, $to_encoding, $from_encoding = null)
+ {
+ return $str;
+ }
+
// substr|substr_count|strtoupper|strtolower|strstr|strrpos|strpos|strlen
function mb_substr ($str, $start, $length = null, $encoding = null)
{
return isset($length) ? substr($str, $start, $length) : substr($str, $start);
}
function mb_substr_count ($haystack, $needle, $encoding = null)
{
return substr_count($haystack, $needle);
}
function mb_strtoupper ($str, $encoding = null)
{
return strtoupper($str);
}
function mb_strtolower ($str, $encoding = null)
{
return strtolower($str);
}
function mb_strstr ($haystack, $needle, $part = false, $encoding = null)
{
return strstr($haystack, $needle);
}
function mb_strrpos ($haystack, $needle, $offset = null, $encoding = null)
{
return isset($offset) ? strrpos($haystack, $needle, $offset) : strrpos($haystack, $needle);
}
function mb_strpos ($haystack, $needle, $offset = null, $encoding = null)
{
return isset($offset) ? strpos($haystack, $needle, $offset) : strpos($haystack, $needle);
}
function mb_strlen ($str, $encoding = null)
{
return strlen($str);
}
}
?>
\ No newline at end of file
Property changes on: branches/RC/core/kernel/utility/multibyte.php
___________________________________________________________________
Modified: cvs2svn:cvs-rev
## -1 +1 ##
-1.1.4.2
\ No newline at end of property
+1.1.4.3
\ No newline at end of property

Event Timeline