[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,19 +199,20 @@ abstract class AbstractCloner implements ClonerInterface
} }
if ($classInfo[1]) { 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 { } else {
$p = (array) $obj; $a = (array) $obj;
} }
$a = array(); if ($a) {
foreach ($p as $k => $p) { $p = array_keys($a);
foreach ($p as $i => $k) {
if (!isset($k[0]) || ("\0" !== $k[0] && !$classInfo[2]->hasProperty($k))) { if (!isset($k[0]) || ("\0" !== $k[0] && !$classInfo[2]->hasProperty($k))) {
$a["\0+\0".$k] = $p; $p[$i] = "\0+\0".$k;
} else {
$a[$k] = $p;
} }
} }
$a = array_combine($p, $a);
}
foreach ($classInfo[3] as $p) { foreach ($classInfo[3] as $p) {
if (!empty($this->casters[$p = strtolower($p)])) { if (!empty($this->casters[$p = strtolower($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 EOTXT
, ,
$out $out