summaryrefslogtreecommitdiff
path: root/ext/standard/array.c
diff options
context:
space:
mode:
authorolshevskiy87 <olshevskiy87@bk.ru>2015-05-13 22:05:59 +0400
committerolshevskiy87 <olshevskiy87@bk.ru>2015-05-13 22:28:35 +0400
commit8bdec7a2489220983db439b7ad729f71e798dc75 (patch)
treed27c3a409fe50b03c059fb80c6be3864143ce1df /ext/standard/array.c
parentabb616ae2042e5769cf4fc5e9ab12bc4d6938a58 (diff)
downloadphp-git-8bdec7a2489220983db439b7ad729f71e798dc75.tar.gz
fix typos
Signed-off-by: olshevskiy87 <olshevskiy87@bk.ru>
Diffstat (limited to 'ext/standard/array.c')
-rw-r--r--ext/standard/array.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/standard/array.c b/ext/standard/array.c
index aef003d7a1..3397de923b 100644
--- a/ext/standard/array.c
+++ b/ext/standard/array.c
@@ -3796,7 +3796,7 @@ PHP_FUNCTION(array_intersect)
/* }}} */
/* {{{ proto array array_uintersect(array arr1, array arr2 [, array ...], callback data_compare_func)
- Returns the entries of arr1 that have values which are present in all the other arguments. Data is compared by using an user-supplied callback. */
+ Returns the entries of arr1 that have values which are present in all the other arguments. Data is compared by using a user-supplied callback. */
PHP_FUNCTION(array_uintersect)
{
php_array_intersect(INTERNAL_FUNCTION_PARAM_PASSTHRU, INTERSECT_NORMAL, INTERSECT_COMP_DATA_USER, INTERSECT_COMP_KEY_INTERNAL);
@@ -3812,7 +3812,7 @@ PHP_FUNCTION(array_intersect_assoc)
/* }}} */
/* {{{ proto array array_intersect_uassoc(array arr1, array arr2 [, array ...], callback key_compare_func) U
- Returns the entries of arr1 that have values which are present in all the other arguments. Keys are used to do more restrictive check and they are compared by using an user-supplied callback. */
+ Returns the entries of arr1 that have values which are present in all the other arguments. Keys are used to do more restrictive check and they are compared by using a user-supplied callback. */
PHP_FUNCTION(array_intersect_uassoc)
{
php_array_intersect(INTERNAL_FUNCTION_PARAM_PASSTHRU, INTERSECT_ASSOC, INTERSECT_COMP_DATA_INTERNAL, INTERSECT_COMP_KEY_USER);
@@ -3820,7 +3820,7 @@ PHP_FUNCTION(array_intersect_uassoc)
/* }}} */
/* {{{ proto array array_uintersect_assoc(array arr1, array arr2 [, array ...], callback data_compare_func) U
- Returns the entries of arr1 that have values which are present in all the other arguments. Keys are used to do more restrictive check. Data is compared by using an user-supplied callback. */
+ Returns the entries of arr1 that have values which are present in all the other arguments. Keys are used to do more restrictive check. Data is compared by using a user-supplied callback. */
PHP_FUNCTION(array_uintersect_assoc)
{
php_array_intersect_key(INTERNAL_FUNCTION_PARAM_PASSTHRU, INTERSECT_COMP_DATA_USER);