php 以秒为单位分析内存使用运行时间

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 以秒为单位分析内存使用运行时间相关的知识,希望对你有一定的参考价值。

    <?php
   class Memory
{

    private $startTime;

    public function __construct()
    {
        $this->startTime = microtime(true);
    }

    private function getSetMemoryLimit()
    {
        return ini_get('memory_limit');
    }

    private function getCurrentPeakMemoryUsage()
    {
        return memory_get_peak_usage(1);
    }


    private function getElapsedTime()
    {
        return (microtime(true) - $this->startTime);
    }

}

以上是关于php 以秒为单位分析内存使用运行时间的主要内容,如果未能解决你的问题,请参考以下文章

如何测量 powershell 脚本中不同功能的持续时间(以秒为单位)?

获取自 Linux 上的 Epoch、Bash 以来的当前时间(以秒为单位)

使用 JOOQ 在 PostgreSQL 中以秒为单位查找和求和时间戳之间的差异

以秒为单位将数字拆分为天、小时、分钟和秒?

SQL Datediff 以秒为单位,带小数位

在 Ada 中,如何将当前时间(以秒为单位)作为可以打印出来并执行操作的值?