File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ ext/mcrypt
71
71
ext/standard
72
72
------------
73
73
* add a version number to data serialized via serialize().
74
- * array_add(), array_rand() (Andrei)
74
+ * array_add(), array_rand(), array_uniq() (Andrei)
75
75
* implement pathinfo() (what the heck is it?)
76
76
* possibly modify parsing of GPC data to automatically create arrays if
77
77
variable name is seen more than once.
Original file line number Diff line number Diff line change @@ -2511,7 +2511,7 @@ PHP_FUNCTION(substr_count)
2511
2511
php_error (E_WARNING , "Empty substring" );
2512
2512
RETURN_FALSE ;
2513
2513
} else if ((* needle )-> value .str .len == 1 ) {
2514
- // Special optimized case to avoid calls to php_memnstr
2514
+ /* Special optimized case to avoid calls to php_memnstr(). */
2515
2515
for (i = 0 , p = (* haystack )-> value .str .val ,
2516
2516
length = (* haystack )-> value .str .len , cmp = (* needle )-> value .str .val [0 ];
2517
2517
i < length ; i ++ ) {
You can’t perform that action at this time.
0 commit comments