[VarDumper] Fix dumping references as properties

This commit is contained in:
Nicolas Grekas 2015-03-30 18:14:17 +02:00
parent 89c82e5b63
commit 6c6560e5f5
2 changed files with 37 additions and 8 deletions

View File

@ -199,18 +199,19 @@ abstract class AbstractCloner implements ClonerInterface
}
if ($classInfo[1]) {
$p = $this->callCaster(function ($obj) {return $obj->__debugInfo();}, $obj, array(), null, $isNested);
$a = $this->callCaster(function ($obj) {return $obj->__debugInfo();}, $obj, array(), null, $isNested);
} else {
$p = (array) $obj;
$a = (array) $obj;
}
$a = array();
foreach ($p as $k => $p) {
if (!isset($k[0]) || ("\0" !== $k[0] && !$classInfo[2]->hasProperty($k))) {
$a["\0+\0".$k] = $p;
} else {
$a[$k] = $p;
if ($a) {
$p = array_keys($a);
foreach ($p as $i => $k) {
if (!isset($k[0]) || ("\0" !== $k[0] && !$classInfo[2]->hasProperty($k))) {
$p[$i] = "\0+\0".$k;
}
}
$a = array_combine($p, $a);
}
foreach ($classInfo[3] as $p) {

View File

@ -154,6 +154,34 @@ EOTXT
}
}
EOTXT
,
$out
);
}
public function testRefsInProperties()
{
$var = (object) array('foo' => 'foo');
$var->bar =& $var->foo;
$dumper = new CliDumper();
$dumper->setColors(false);
$cloner = new VarCloner();
$out = fopen('php://memory', 'r+b');
$data = $cloner->cloneVar($var);
$dumper->dump($data, $out);
rewind($out);
$out = stream_get_contents($out);
$this->assertStringMatchesFormat(
<<<EOTXT
{#%d
+"foo": &1 "foo"
+"bar": &1 "foo"
}
EOTXT
,
$out