@@ -2396,7 +2396,7 @@ discard block |
||
2396 | 2396 | * |
2397 | 2397 | * @see http://hsivonen.iki.fi/php-utf8/ |
2398 | 2398 | * |
2399 | - * @param string|string[] $str <p>The string to be checked.</p> |
|
2399 | + * @param string $str <p>The string to be checked.</p> |
|
2400 | 2400 | * @param bool $strict <p>Check also if the string is not UTF-16 or UTF-32.</p> |
2401 | 2401 | * |
2402 | 2402 | * @return bool |
@@ -5116,7 +5116,7 @@ discard block |
||
5116 | 5116 | * @link http://php.net/manual/en/function.mb-strrpos.php |
5117 | 5117 | * |
5118 | 5118 | * @param string $haystack <p>The string being checked, for the last occurrence of needle</p> |
5119 | - * @param string|int $needle <p>The string to find in haystack.<br>Or a code point as int.</p> |
|
5119 | + * @param string $needle <p>The string to find in haystack.<br>Or a code point as int.</p> |
|
5120 | 5120 | * @param int $offset [optional] <p>May be specified to begin searching an arbitrary number of characters |
5121 | 5121 | * into the string. Negative values will stop searching at an arbitrary point prior to |
5122 | 5122 | * the end of the string. |
@@ -5915,8 +5915,8 @@ discard block |
||
5915 | 5915 | * |
5916 | 5916 | * source: https://gist.github.com/stemar/8287074 |
5917 | 5917 | * |
5918 | - * @param string|string[] $str <p>The input string or an array of stings.</p> |
|
5919 | - * @param string|string[] $replacement <p>The replacement string or an array of stings.</p> |
|
5918 | + * @param string $str <p>The input string or an array of stings.</p> |
|
5919 | + * @param string $replacement <p>The replacement string or an array of stings.</p> |
|
5920 | 5920 | * @param int|int[] $offset <p> |
5921 | 5921 | * If start is positive, the replacing will begin at the start'th offset |
5922 | 5922 | * into string. |
@@ -5924,7 +5924,7 @@ discard block |
||
5924 | 5924 | * If start is negative, the replacing will begin at the start'th character |
5925 | 5925 | * from the end of string. |
5926 | 5926 | * </p> |
5927 | - * @param int|int[]|null $length [optional] <p>If given and is positive, it represents the length of the |
|
5927 | + * @param integer $length [optional] <p>If given and is positive, it represents the length of the |
|
5928 | 5928 | * portion of string which is to be replaced. If it is negative, it |
5929 | 5929 | * represents the number of characters from the end of string at which to |
5930 | 5930 | * stop replacing. If it is not given, then it will default to strlen( |