@@ -6,15 +6,15 @@ function str_ireplace(search, replace, subject, count) {
6
6
// : http://ca3.php.net/manual/en/function.str-ireplace.php
7
7
// format: str_ireplace($search, $replace, $subject[, 'count'])
8
8
// Parameters: If search and replace are arrays, then str_ireplace() takes a
9
- // value from each array and uses them to search and replace on
10
- // subject.
11
- // If replace has fewer values than search, then an empty string
12
- // is used for the rest of replacement values.
13
- // If search is an array and replace is a string, then this
14
- // replacement string is used for every value of search.
9
+ // Parameters: value from each array and uses them to search and replace on
10
+ // Parameters: subject.
11
+ // Parameters: If replace has fewer values than search, then an empty string
12
+ // Parameters: is used for the rest of replacement values.
13
+ // Parameters: If search is an array and replace is a string, then this
14
+ // Parameters: replacement string is used for every value of search.
15
15
// note: The count parameter (optional) if used must be passed in as a
16
- // string. eg global var MyCount:
17
- // str_ireplace($search, $replace, $subject, 'myCount');
16
+ // note: string. eg global var MyCount:
17
+ // note: str_ireplace($search, $replace, $subject, 'myCount');
18
18
// input: str_ireplace($search, $replace, $subject[, {string}]);
19
19
// Returns: a string or an array of replacements.
20
20
0 commit comments