php-src/ext/standard/tests/array/array_walk_rec_objects.phpt
2008-08-29 15:47:00 +00:00

38 lines
843 B
PHP

--TEST--
array_walk_recursive() and objects
--FILE--
<?php
function walk($key, $value) {
var_dump($value, $key);
}
class test {
private $var_pri = "test_private";
protected $var_pro = "test_protected";
public $var_pub = "test_public";
}
$stdclass = new stdclass;
$stdclass->foo = "foo";
$stdclass->bar = "bar";
array_walk_recursive($stdclass, "walk");
$t = new test;
array_walk_recursive($t, "walk");
$var = array();
array_walk_recursive($var, "walk");
$var = "";
array_walk_recursive($var, "walk");
echo "Done\n";
?>
--EXPECTF--
Warning: array_walk_recursive() expects parameter 1 to be array, object given in %s on line %d
Warning: array_walk_recursive() expects parameter 1 to be array, object given in %s on line %d
Warning: array_walk_recursive() expects parameter 1 to be array, Unicode string given in %s on line %d
Done