Page Menu
Home
In-Portal Phabricator
Search
Configure Global Search
Log In
Files
F1243179
in-portal
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Thu, Nov 20, 4:45 PM
Size
1 KB
Mime Type
text/x-diff
Expires
Sat, Nov 22, 4:45 PM (13 h, 33 m)
Engine
blob
Format
Raw Data
Handle
809037
Attached To
rINP In-Portal
in-portal
View Options
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
Log In to Comment