summaryrefslogtreecommitdiff
path: root/Zend/tests/each_002.phpt
blob: f47ded4b140586dbc2837856664d4427bee4e3bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
--TEST--
Testing each() with array and object
--FILE--
<?php

$foo = each(new stdClass);
var_dump($foo);

var_dump(each(new stdClass));

$a = array(new stdClass);
var_dump(each($a));


?>
--EXPECTF--
bool(false)
bool(false)
array(4) {
  [1]=>
  object(stdClass)#1 (0) {
  }
  ["value"]=>
  object(stdClass)#1 (0) {
  }
  [0]=>
  int(0)
  ["key"]=>
  int(0)
}