@@ -278,7 +278,7 @@ class Multibyte {
278
278
* Converts a multibyte character string
279
279
* to the decimal value of the character
280
280
*
281
- * @param multibyte string $string
281
+ * @param string $string
282
282
* @return array
283
283
*/
284
284
public static function utf8 ($ string ) {
@@ -341,8 +341,8 @@ public static function ascii($array) {
341
341
/**
342
342
* Find position of first occurrence of a case-insensitive string.
343
343
*
344
- * @param multi-byte string $haystack The string from which to get the position of the first occurrence of $needle.
345
- * @param multi-byte string $needle The string to find in $haystack.
344
+ * @param string $haystack The string from which to get the position of the first occurrence of $needle.
345
+ * @param string $needle The string to find in $haystack.
346
346
* @param integer $offset The position in $haystack to start searching.
347
347
* @return integer|boolean The numeric position of the first occurrence of $needle in the $haystack string,
348
348
* or false if $needle is not found.
@@ -803,10 +803,7 @@ public static function strtolower($string) {
803
803
* Make a string uppercase
804
804
*
805
805
* @param string $string The string being uppercased.
806
- * @param string $encoding Character encoding name to use. If it is omitted, internal character encoding is used.
807
806
* @return string with all alphabetic characters converted to uppercase.
808
- * @access public
809
- * @static
810
807
*/
811
808
public static function strtoupper ($ string ) {
812
809
$ utf8Map = Multibyte::utf8 ($ string );
0 commit comments