mirror of
https://github.com/php/php-src.git
synced 2025-08-21 01:45:16 +02:00
Merge branch 'PHP-5.4' into PHP-5.5
* PHP-5.4: Revert "EmptyIterator now implements Countable; fixes bug 60577"
This commit is contained in:
commit
94e4c4df86
3 changed files with 2 additions and 31 deletions
|
@ -15,7 +15,7 @@
|
||||||
* @version 1.0
|
* @version 1.0
|
||||||
* @since PHP 5.1
|
* @since PHP 5.1
|
||||||
*/
|
*/
|
||||||
class EmptyIterator implements Iterator, Countable
|
class EmptyIterator implements Iterator
|
||||||
{
|
{
|
||||||
/** No operation.
|
/** No operation.
|
||||||
* @return void
|
* @return void
|
||||||
|
@ -57,15 +57,6 @@ class EmptyIterator implements Iterator, Countable
|
||||||
{
|
{
|
||||||
// nothing to do
|
// nothing to do
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @return int
|
|
||||||
*/
|
|
||||||
function count()
|
|
||||||
{
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
?>
|
?>
|
|
@ -3241,23 +3241,12 @@ SPL_METHOD(EmptyIterator, next)
|
||||||
}
|
}
|
||||||
} /* }}} */
|
} /* }}} */
|
||||||
|
|
||||||
/* {{{ proto int EmptyIterator::count()
|
|
||||||
Does nothing */
|
|
||||||
SPL_METHOD(EmptyIterator, count)
|
|
||||||
{
|
|
||||||
if (zend_parse_parameters_none() == FAILURE) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
RETURN_LONG(0);
|
|
||||||
} /* }}} */
|
|
||||||
|
|
||||||
static const zend_function_entry spl_funcs_EmptyIterator[] = {
|
static const zend_function_entry spl_funcs_EmptyIterator[] = {
|
||||||
SPL_ME(EmptyIterator, rewind, arginfo_recursive_it_void, ZEND_ACC_PUBLIC)
|
SPL_ME(EmptyIterator, rewind, arginfo_recursive_it_void, ZEND_ACC_PUBLIC)
|
||||||
SPL_ME(EmptyIterator, valid, arginfo_recursive_it_void, ZEND_ACC_PUBLIC)
|
SPL_ME(EmptyIterator, valid, arginfo_recursive_it_void, ZEND_ACC_PUBLIC)
|
||||||
SPL_ME(EmptyIterator, key, arginfo_recursive_it_void, ZEND_ACC_PUBLIC)
|
SPL_ME(EmptyIterator, key, arginfo_recursive_it_void, ZEND_ACC_PUBLIC)
|
||||||
SPL_ME(EmptyIterator, current, arginfo_recursive_it_void, ZEND_ACC_PUBLIC)
|
SPL_ME(EmptyIterator, current, arginfo_recursive_it_void, ZEND_ACC_PUBLIC)
|
||||||
SPL_ME(EmptyIterator, next, arginfo_recursive_it_void, ZEND_ACC_PUBLIC)
|
SPL_ME(EmptyIterator, next, arginfo_recursive_it_void, ZEND_ACC_PUBLIC)
|
||||||
SPL_ME(EmptyIterator, count, arginfo_recursive_it_void, ZEND_ACC_PUBLIC)
|
|
||||||
PHP_FE_END
|
PHP_FE_END
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -3718,7 +3707,6 @@ PHP_MINIT_FUNCTION(spl_iterators)
|
||||||
|
|
||||||
REGISTER_SPL_STD_CLASS_EX(EmptyIterator, NULL, spl_funcs_EmptyIterator);
|
REGISTER_SPL_STD_CLASS_EX(EmptyIterator, NULL, spl_funcs_EmptyIterator);
|
||||||
REGISTER_SPL_ITERATOR(EmptyIterator);
|
REGISTER_SPL_ITERATOR(EmptyIterator);
|
||||||
REGISTER_SPL_IMPLEMENTS(EmptyIterator, Countable);
|
|
||||||
|
|
||||||
REGISTER_SPL_SUB_CLASS_EX(RecursiveTreeIterator, RecursiveIteratorIterator, spl_RecursiveTreeIterator_new, spl_funcs_RecursiveTreeIterator);
|
REGISTER_SPL_SUB_CLASS_EX(RecursiveTreeIterator, RecursiveIteratorIterator, spl_RecursiveTreeIterator_new, spl_funcs_RecursiveTreeIterator);
|
||||||
REGISTER_SPL_CLASS_CONST_LONG(RecursiveTreeIterator, "BYPASS_CURRENT", RTIT_BYPASS_CURRENT);
|
REGISTER_SPL_CLASS_CONST_LONG(RecursiveTreeIterator, "BYPASS_CURRENT", RTIT_BYPASS_CURRENT);
|
||||||
|
|
|
@ -1,8 +0,0 @@
|
||||||
--TEST--
|
|
||||||
count(new EmptyIterator) should return zero
|
|
||||||
--FILE--
|
|
||||||
<?php
|
|
||||||
$it = new EmptyIterator;
|
|
||||||
var_dump(count($it));
|
|
||||||
--EXPECT--
|
|
||||||
int(0)
|
|
Loading…
Add table
Add a link
Reference in a new issue