biohazard/laravel-debugbar-memory 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

biohazard/laravel-debugbar-memory

最新稳定版本:0.0.2

Composer 安装命令:

composer require biohazard/laravel-debugbar-memory

包简介

Add detailed memory usage measurement for code blocks in laravel debugbar

README 文档

README

License

Add detailed memory usage measurement for code blocks in Laravel Debugbar

Installation

Require this package with composer. It is recommended to only require the package for development.

composer require biohazard/laravel-debugbar-memory --dev

Laravel 5.5 uses Package Auto-Discovery, so doesn't require you to manually add the ServiceProvider.

If you don't use auto-discovery, add the ServiceProvider to the providers array in config/app.php

Iffifan\MemoryDebugbar\Providers\MemoryDebugbarServiceProvider::class,

Usage

After successful installation you should see Memory tab in your Debugbar

Screenshot

Measuring memory usage of a code block

Let's calculate memory usage of a while loop with helper methods

    start_memory_measure('Some Loop');
    $a = 0;
    $b = 'X';
    while ($a < 10000000) {
        $b .= 'X';
        ++$a;
    }
    stop_memory_measure('Some Loop');

Memory calculation will be updated like this:

Screenshot

Disable

Just add

        'memory_details'  => false, //Display memory details

in config/debugbar.php

统计信息

  • 总下载量: 14
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 1
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 2
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2023-04-17