b0y-101 Mini Shell


Current Path : E:/www/b-group.old/spfin - Copy/testpayment/src/xdebug/tests/gcstats/
File Upload :
Current File : E:/www/b-group.old/spfin - Copy/testpayment/src/xdebug/tests/gcstats/xdebug_gc_stats-006.phpt

--TEST--
GC Stats: Start with xdebug_start_gcstats() and filename
--INI--
xdebug.mode=gcstats
xdebug.start_with_request=default
zend.enable_gc=1
--FILE--
<?php
var_dump(xdebug_get_gcstats_filename());

$filename = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'gcstats.' . uniqid('', TRUE). '.txt';
$actual = xdebug_start_gcstats($filename);

var_dump($actual === $filename);
var_dump(xdebug_get_gcstats_filename());
xdebug_stop_gcstats();
unlink(xdebug_get_gcstats_filename());
?>
--EXPECTF--
bool(false)
bool(true)
string(%d) "%sgcstats.%s.%s.txt"

Copyright © 2019 by b0y-101