summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Weinand <bobwei9@hotmail.com>2014-04-13 19:25:07 +0200
committerBob Weinand <bobwei9@hotmail.com>2014-04-13 19:25:07 +0200
commiteca0644e0acb391540e40a320e10782225654baf (patch)
treeb2c879e32a510b0ab71d0a12d930dbb0370f6315
parent2876bde63494129b78c393851c5f8101e6f9fdf0 (diff)
parent1a4a9eede59b853f11e8e8b965e5f715f53da8f7 (diff)
downloadphp-git-eca0644e0acb391540e40a320e10782225654baf.tar.gz
Merge branch 'PHP-5.4' into PHP-5.5
-rw-r--r--ext/standard/array.c5
-rw-r--r--ext/standard/tests/array/bug67064.phpt17
2 files changed, 21 insertions, 1 deletions
diff --git a/ext/standard/array.c b/ext/standard/array.c
index 1a29afa6dc..a1f33178ad 100644
--- a/ext/standard/array.c
+++ b/ext/standard/array.c
@@ -333,7 +333,10 @@ PHP_FUNCTION(count)
#ifdef HAVE_SPL
/* if not and the object implements Countable we call its count() method */
if (Z_OBJ_HT_P(array)->get_class_entry && instanceof_function(Z_OBJCE_P(array), spl_ce_Countable TSRMLS_CC)) {
- zend_call_method_with_0_params(&array, NULL, NULL, "count", &retval);
+ zval *mode_zv;
+ MAKE_STD_ZVAL(mode_zv);
+ Z_LVAL_P(mode_zv) = mode;
+ zend_call_method_with_1_params(&array, NULL, NULL, "count", &retval, mode_zv);
if (retval) {
convert_to_long_ex(&retval);
RETVAL_LONG(Z_LVAL_P(retval));
diff --git a/ext/standard/tests/array/bug67064.phpt b/ext/standard/tests/array/bug67064.phpt
new file mode 100644
index 0000000000..e1996e36b6
--- /dev/null
+++ b/ext/standard/tests/array/bug67064.phpt
@@ -0,0 +1,17 @@
+--TEST--
+Bug #67064 ()
+--FILE--
+<?php
+class Counter implements Countable {
+ public function count($mode = COUNT_NORMAL) {
+ var_dump($mode == COUNT_RECURSIVE);
+ return 1;
+ }
+}
+
+$counter = new Counter;
+var_dump(count($counter, COUNT_RECURSIVE));
+?>
+--EXPECTF--
+bool(true)
+int(1)