Uname:
Linux server.thebazaar99.com 5.14.0-687.17.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Mon Jun 22 07:21:26 EDT 2026 x86_64
Software:
Apache
PHP version:
8.3.32 [ PHP INFO ] PHP os:
Linux
Server Ip:
163.227.92.254
Your Ip:
216.73.217.24
User:
gutlooks (1003) | Group:
gutlooks (1005)
Safe Mode:
OFF
Disable Function:
exec,passthru,shell_exec,system
<?php
namespace {
class ExcimerLogEntry
{
/**
* ExcimerLogEntry is not constructible by user code.
*/
private final function __construct()
{
}
/**
* Get the time at which the event occurred. This is the floating point
* number of seconds since the ExcimerProfiler object was constructed.
*
* @return float
*/
public function getTimestamp()
{
}
/**
* Get the event count represented by this log entry. This will typically
* be 1. If there were overruns, it will be 1 plus the number of overruns.
*
* @return int
*/
public function getEventCount()
{
}
/**
* Get an array of associative arrays describing the stack trace at the time
* of the event. The first element in the array is the function which was
* executing, the second function is the caller (parent) of that function,
* and so on. Each element is an associative array with the following
* optional fields:
*
* - file: The filename in which the function appears
* - line: The exact line number at which the event occurred.
* - class: The class name in which the method is defined
* - function: The name of the function or method
* - closure_line: The line number at which the closure was defined
*
* @return array<int, array{
* file: string,
* line: int,
* class?: string,
* function?: string,
* closure_line?: int,
* }>
*/
public function getTrace(): array
{
}
}
}