b0y-101 Mini Shell


Current Path : E:/www/b-group.old/spfin/phppayment/src/xdebug/tests/develop/
File Upload :
Current File : E:/www/b-group.old/spfin/phppayment/src/xdebug/tests/develop/xdebug_var_dump_fileformat-ansi.phpt

--TEST--
Test for file display with xdebug_var_dump()
--INI--
xdebug.mode=develop
html_errors=0
xdebug.var_display_max_children=11
xdebug.cli_color=2
xdebug.file_link_format=
xdebug.filename_format=
--FILE--
<?php
class TimeStuff {
	private $timestamp;

	function __construct($ts = null)
	{
		$this->timestamp = $ts === null ? time() : $ts;
	}
}
$ts1 = new TimeStuff(1092515106);

ini_set('xdebug.filename_format', "%n");
var_dump($ts1);
echo "\n";

ini_set('xdebug.filename_format', "…%s%p");
var_dump($ts1);
echo "\n";

ini_set('xdebug.filename_format', "«%a»");
var_dump($ts1);
echo "\n";

ini_set('xdebug.filename_format', "{%f}");
var_dump($ts1);
echo "\n";
?>
--EXPECTF--
xdebug_var_dump_fileformat-ansi.php:13:
class TimeStuff#%d (1) {
  private $timestamp =>
  int(1092515106)
}

…%edevelop%exdebug_var_dump_fileformat-ansi.php:17:
class TimeStuff#%d (1) {
  private $timestamp =>
  int(1092515106)
}

«tests%edevelop%exdebug_var_dump_fileformat-ansi.php»:21:
class TimeStuff#%d (1) {
  private $timestamp =>
  int(1092515106)
}

{%s%etests%edevelop%exdebug_var_dump_fileformat-ansi.php}:25:
class TimeStuff#%d (1) {
  private $timestamp =>
  int(1092515106)
}

Copyright © 2019 by b0y-101