/PHP-7.3/ext/standard/tests/strings/ |
H A D | htmlspecialchars_decode_variation1.phpt | 96 -- Iterator 1 -- 98 -- Iterator 2 -- 100 -- Iterator 3 -- 102 -- Iterator 4 -- 104 -- Iterator 5 -- 106 -- Iterator 6 -- 108 -- Iterator 7 -- 110 -- Iterator 8 -- 112 -- Iterator 9 -- 114 -- Iterator 10 -- [all …]
|
H A D | strrev_variation4.phpt | 93 -- Iterator 1 -- 96 -- Iterator 2 -- 99 -- Iterator 3 -- 102 -- Iterator 4 -- 105 -- Iterator 5 -- 108 -- Iterator 6 -- 111 -- Iterator 7 -- 114 -- Iterator 8 -- 117 -- Iterator 9 -- 120 -- Iterator 10 -- [all …]
|
/PHP-7.3/ext/standard/tests/general_functions/ |
H A D | php_uname_variation1.phpt | 72 -- Iterator 0 -- 74 -- Iterator 1 -- 76 -- Iterator 12345 -- 80 -- Iterator 10.5 -- 88 -- Iterator .5 -- 90 -- Iterator NULL -- 92 -- Iterator null -- 94 -- Iterator true -- 98 -- Iterator TRUE -- 102 -- Iterator "" -- [all …]
|
/PHP-7.3/ext/standard/tests/array/ |
H A D | array_intersect_variation6.phpt | 81 -- Iterator 1 -- 86 -- Iterator 2 -- 91 -- Iterator 3 -- 100 -- Iterator 4 -- 109 -- Iterator 5 -- 118 -- Iterator 6 -- 127 -- Iterator 7 -- 140 -- Iterator 8 -- 153 -- Iterator 9 -- 166 -- Iterator 10 -- [all …]
|
H A D | array_intersect_variation3.phpt | 105 -- Iterator 1 -- 118 -- Iterator 2 -- 127 -- Iterator 3 -- 140 -- Iterator 4 -- 145 -- Iterator 5 -- 154 -- Iterator 6 -- 165 -- Iterator 7 -- 174 -- Iterator 8 -- 203 -- Iterator 9 -- 216 -- Iterator 10 -- [all …]
|
H A D | array_intersect_variation5.phpt | 81 -- Iterator 1 -- 86 -- Iterator 2 -- 91 -- Iterator 3 -- 100 -- Iterator 4 -- 109 -- Iterator 5 -- 118 -- Iterator 6 -- 127 -- Iterator 7 -- 140 -- Iterator 8 -- 153 -- Iterator 9 -- 166 -- Iterator 10 -- [all …]
|
H A D | array_intersect_variation7.phpt | 92 -- Iterator 1 -- 97 -- Iterator 2 -- 102 -- Iterator 3 -- 111 -- Iterator 4 -- 124 -- Iterator 5 -- 133 -- Iterator 6 -- 142 -- Iterator 7 -- 151 -- Iterator 8 -- 160 -- Iterator 9 -- 169 -- Iterator 10 -- [all …]
|
H A D | array_intersect_variation8.phpt | 92 -- Iterator 1 -- 97 -- Iterator 2 -- 102 -- Iterator 3 -- 111 -- Iterator 4 -- 124 -- Iterator 5 -- 133 -- Iterator 6 -- 142 -- Iterator 7 -- 151 -- Iterator 8 -- 160 -- Iterator 9 -- 173 -- Iterator 10 -- [all …]
|
H A D | array_intersect_variation1.phpt | 113 -- Iterator 1 -- 120 -- Iterator 2 -- 127 -- Iterator 3 -- 134 -- Iterator 4 -- 141 -- Iterator 5 -- 148 -- Iterator 6 -- 155 -- Iterator 7 -- 162 -- Iterator 8 -- 169 -- Iterator 9 -- 176 -- Iterator 10 -- [all …]
|
H A D | array_intersect_variation2.phpt | 114 -- Iterator 1 -- 121 -- Iterator 2 -- 128 -- Iterator 3 -- 135 -- Iterator 4 -- 142 -- Iterator 5 -- 149 -- Iterator 6 -- 156 -- Iterator 7 -- 163 -- Iterator 8 -- 170 -- Iterator 9 -- 177 -- Iterator 10 -- [all …]
|
/PHP-7.3/ext/spl/internal/ |
H A D | multipleiterator.inc | 19 class MultipleIterator implements Iterator 60 /** @param $iter new Iterator to attach. 66 public function attachIterator(Iterator $iter, $inf = NULL) 87 public function detachIterator(Iterator $iter) 92 /** @param $iter Iterator to check 95 public function containsIterator(Iterator $iter) 100 /** @return number of attached Iterator instances. */ 106 /** Rewind all attached Iterator instances. */ 152 * all registered Iterator instances current() result. 195 * all registered Iterator instances key() result. [all …]
|
H A D | infiniteiterator.inc | 13 * @brief An infinite Iterator 18 * This Iterator takes another Iterator and infinitvely iterates it by 21 * \note Even an InfiniteIterator stops if its inner Iterator is empty. 35 /** Move the inner Iterator forward to its next element or rewind it.
|
H A D | appenditerator.inc | 13 * @brief Iterator that iterates over several iterators one after the other 30 /** Append an Iterator 31 * @param $it Iterator to append 38 function append(Iterator $it) 43 /** @return the current inner Iterator 50 /** Rewind to the first element of the first inner Iterator. 87 /** Move to the next element. If this means to another Iterator that 88 * rewind that Iterator.
|
H A D | recursivecachingiterator.inc | 13 * @brief Cached recursive iteration over another Iterator 27 * @param it Iterator to cache 37 /** Rewind Iterator 46 /** Forward to next element if necessary then an Iterator for the Children 81 * @note The check whether the Iterator for the children can be created was 91 /** @return An Iterator for the children
|
H A D | iteratoriterator.inc | 13 * @brief Basic Iterator wrapper 17 * an Iterator. It is very important to understand that most classes that do 18 * not implement Iterator have their reasone to. Most likely they do not allow 19 * the full Iterator feature set. If so you need to provide techniques to 42 /** Construct an IteratorIterator from an Iterator or an IteratorAggregate. 53 if ($iterator instanceof Iterator)
|
/PHP-7.3/ext/spl/tests/ |
H A D | bug67360.phpt | 9 $Iterator = $ArrayObject->getIterator(); 10 var_dump(count($Iterator) === count($array)); 11 var_dump(iterator_to_array($Iterator));
|
H A D | iterator_058.phpt | 2 SPL: Iterator::__construct(void) 7 class myIterator implements Iterator {
|
H A D | arrayObject_setIteratorClass_error1.phpt | 46 …:setIteratorClass() expects parameter 1 to be a class name derived from Iterator, 'nonExistentClas… 51 …:setIteratorClass() expects parameter 1 to be a class name derived from Iterator, 'stdClass' given… 55 …ject::__construct() expects parameter 3 to be a class name derived from Iterator, 'nonExistentClas… 56 …ject::__construct() expects parameter 3 to be a class name derived from Iterator, 'stdClass' given"
|
/PHP-7.3/ext/spl/examples/ |
H A D | dualiterator.inc | 17 class DualIterator implements Iterator 36 * @param lhs Left Hand Side Iterator 37 * @param rhs Right Hand Side Iterator 40 function __construct(Iterator $lhs, Iterator $rhs, 48 /** @return Left Hand Side Iterator 55 /** @return Right Hand Side Iterator 157 * @param lhs Left Hand Side Iterator 158 * @param rhs Right Hand Side Iterator 165 static function compareIterators(Iterator $lhs, Iterator $rhs,
|
/PHP-7.3/tests/lang/ |
H A D | foreachLoopIteratorAggregate.002.phpt | 49 30: Objects returned by bad1::getIterator() must be traversable or implement interface Iterator 50 30: Objects returned by bad2::getIterator() must be traversable or implement interface Iterator 51 30: Objects returned by bad3::getIterator() must be traversable or implement interface Iterator 52 30: Objects returned by bad4::getIterator() must be traversable or implement interface Iterator
|
/PHP-7.3/Zend/tests/return_types/ |
H A D | 016.phpt | 9 function foo(\Iterator $i): \Iterator {
|
H A D | generators002.phpt | 2 Generator return type must be Generator, Iterator or Traversable 9 Fatal error: Generators may only declare a return type of Generator, Iterator, Traversable, or iter…
|
H A D | generators005.phpt | 6 function getIterator(): Iterator; 10 function getIterator(): Iterator {
|
/PHP-7.3/Zend/tests/ |
H A D | bug48667_1.phpt | 6 abstract class A implements Iterator, IteratorAggregate { } 10 Fatal error: Class A cannot implement both IteratorAggregate and Iterator at the same time in %s on…
|
H A D | bug48667_2.phpt | 6 abstract class A implements IteratorAggregate, Iterator { } 10 Fatal error: Class A cannot implement both Iterator and IteratorAggregate at the same time in %s on…
|