Viewing File: /opt/alt/tests/alt-php80-pecl-xhprof-tideways_5.0.4-2.el8/tests/xhprof_004.phpt
--TEST--
Tideways: Closure and Anonymous Classes
--FILE--
<?php
include_once dirname(__FILE__).'/common.php';
tideways_xhprof_enable();
$foo = function() {};
$foo();
$bar = new class () {
public function baz() {
}
};
$bar->baz();
$output = tideways_xhprof_disable();
print_canonical($output);
?>
--EXPECTF--
main() : ct= 1; wt=*;
main()==>class@anonymous::baz : ct= 1; wt=*;
main()==>tideways_xhprof_disable : ct= 1; wt=*;
main()==>{closure} : ct= 1; wt=*;
Back to Directory
File Manager
<