mirror of
https://github.com/php/php-src.git
synced 2026-04-28 18:53:33 +02:00
960318ed95
Closes GH-5211
48 lines
921 B
PHP
48 lines
921 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 = "";
|
|
try {
|
|
array_walk_recursive($var, "walk");
|
|
} catch (TypeError $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
|
|
echo "Done\n";
|
|
?>
|
|
--EXPECT--
|
|
string(3) "foo"
|
|
string(3) "foo"
|
|
string(3) "bar"
|
|
string(3) "bar"
|
|
string(13) " |