b0y-101 Mini Shell


Current Path : E:/www/b-group.old/spfin - Copy/testpayment/src/xdebug/tests/develop/
File Upload :
Current File : E:/www/b-group.old/spfin - Copy/testpayment/src/xdebug/tests/develop/bug00987-003.phpt

--TEST--
Test for bug #987: Hidden property names not shown with var_dump (CLI colours)
--INI--
html_errors=0
xdebug.mode=develop
xdebug.cli_color=2
--FILE--
<?php
$object = (object) array('key' => 'value', 1 => 0, -4 => "foo", (int) 3.14 => false);

var_dump($object);
?>
--EXPECTF--
%sbug00987-003.php:4:
class stdClass#%d (4) {
  public $key =>
  string(5) "value"
  public $1 =>
  int(0)
  public $-4 =>
  string(3) "foo"
  public $3 =>
  bool(false)
}

Copyright © 2019 by b0y-101