diff options
| author | Ilia Alshanetsky <iliaa@php.net> | 2006-09-19 23:44:30 +0000 |
|---|---|---|
| committer | Ilia Alshanetsky <iliaa@php.net> | 2006-09-19 23:44:30 +0000 |
| commit | af993553fb33c5cb97be781b013e870434e7590e (patch) | |
| tree | 28690959ccf0052baccc9597b769d7eb3b227f5f /ext/standard/basic_functions.c | |
| parent | cd6537ed6d9d3bf957d70281731406196fba484d (diff) | |
| download | php-git-af993553fb33c5cb97be781b013e870434e7590e.tar.gz | |
array_key_exists() should not work by by-ref
Diffstat (limited to 'ext/standard/basic_functions.c')
| -rw-r--r-- | ext/standard/basic_functions.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/standard/basic_functions.c b/ext/standard/basic_functions.c index 236fbd0106..7beb9deb92 100644 --- a/ext/standard/basic_functions.c +++ b/ext/standard/basic_functions.c @@ -665,9 +665,9 @@ ZEND_BEGIN_ARG_INFO_EX(arginfo_array_map, 0, 0, 3) ZEND_END_ARG_INFO() static -ZEND_BEGIN_ARG_INFO(arginfo_array_key_exists, ZEND_SEND_PREFER_REF) - ZEND_ARG_INFO(ZEND_SEND_PREFER_REF, key) - ZEND_ARG_INFO(ZEND_SEND_PREFER_REF, search) +ZEND_BEGIN_ARG_INFO(arginfo_array_key_exists, 0) + ZEND_ARG_INFO(0, key) + ZEND_ARG_INFO(0, search) ZEND_END_ARG_INFO() static |
