1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
--TEST--
Test for file display with xdebug_var_dump()
--INI--
xdebug.mode=develop
html_errors=1
xdebug.var_display_max_children=11
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--
<pre class='xdebug-var-dump' dir='ltr'>
<small>xdebug_var_dump_fileformat-html.php:%d:</small>
<b>object</b>(<i>TimeStuff</i>)[<i>%d</i>]
<i>private</i> 'timestamp' <font color='#888a85'>=></font> <small>int</small> <font color='#4e9a06'>1092515106</font>
</pre>
<pre class='xdebug-var-dump' dir='ltr'>
<small>…%edevelop%exdebug_var_dump_fileformat-html.php:%d:</small>
<b>object</b>(<i>TimeStuff</i>)[<i>%d</i>]
<i>private</i> 'timestamp' <font color='#888a85'>=></font> <small>int</small> <font color='#4e9a06'>1092515106</font>
</pre>
<pre class='xdebug-var-dump' dir='ltr'>
<small>«tests%edevelop%exdebug_var_dump_fileformat-html.php»:%d:</small>
<b>object</b>(<i>TimeStuff</i>)[<i>%d</i>]
<i>private</i> 'timestamp' <font color='#888a85'>=></font> <small>int</small> <font color='#4e9a06'>1092515106</font>
</pre>
<pre class='xdebug-var-dump' dir='ltr'>
<small>{%stests%edevelop%exdebug_var_dump_fileformat-html.php}:%d:</small>
<b>object</b>(<i>TimeStuff</i>)[<i>%d</i>]
<i>private</i> 'timestamp' <font color='#888a85'>=></font> <small>int</small> <font color='#4e9a06'>1092515106</font>
</pre>
|