PhpSandbox\PHPSandbox::getPreparedTime PHP Méthode

getPreparedTime() public méthode

You can pass the number of digits you wish to round the return value
public getPreparedTime ( integer | null $round ) : float
$round integer | null The number of digits to round the return value
Résultat float The amount of time in microseconds it took to prepare the sandboxed code
    public function getPreparedTime($round = 0)
    {
        return $round ? round($this->prepare_time, $round) : $this->prepare_time;
    }
PHPSandbox