2017 © Pedro Peláez
 

library phpdebug

Debugging Tools for PHP

image

kizilare/phpdebug

Debugging Tools for PHP

  • Thursday, July 5, 2018
  • by borjaeu
  • Repository
  • 0 Watchers
  • 1 Stars
  • 8,928 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 6 Versions
  • 0 % Grown

The README.md

phpDebug

Set of libraries to help debugging profiling on php., (*1)

Profiling with Xdebug

To start profiling:, (*2)

\DebugHelper::watch(true);

To finish the profiling, (*3)

\DebugHelper::endWatch();

This will write several files in the temp folder (by default the directory temp/ in the package root) with the timestamp of the profile., (*4)

In order to watch the debug information:, (*5)

\DebugHelper\Gui::renderLoadsHtml([]);

Collect errors:, (*6)

set_error_handler(array('DebugHelper\Error', 'handler'));

Custom Profiling

Identifies the start of an event. The first parameter indicates the group for the event., (*7)

\DebugHelper::timer('Group 1', 'Some message');

After the process has finished the timer can be reported through the command, (*8)

./bin/phpdebug timer

That show a report in seconds for each of the groups., (*9)

+-----------+-------+--------+--------+---------------------+---------+
| Group     | Times | Min    | Max    | Average             | Total   |
+-----------+-------+--------+--------+---------------------+---------+
| Group 1   | 142   | 0.4272 | 1.3292 | 0.63779647887324    | 90.5671 |
| Group 2   | 142   | 0.0001 | 0.0037 | 0.00015633802816901 | 0.0222  |
+-----------+-------+--------+--------+---------------------+---------+
Total 138.3751 time taken

Url replacements

\DebugHelper::init([
    'handler_url' => 'phpstorm://open?file=<file>&line=<line>',
]);
\DebugHelper\Gui::renderLoadsHtml([]);

Matching

\DebugHelper::init([
    'handler_source' => '/var/www',                  # Path in host or VM
    'handler_target' => '/Users/User/local/project', # Path in current computer

]);
\DebugHelper\Gui::renderLoadsHtml([]);

The Versions

05/07 2018

dev-master

9999999-dev http://kizilare.net

Debugging Tools for PHP

  Sources   Download

The Requires

 

01/09 2016

dev-feature/profile

dev-feature/profile http://kizilare.net

Debugging Tools for PHP

  Sources   Download

The Requires

 

21/07 2016

1.3

1.3.0.0 http://kizilare.net

Debugging Tools for PHP

  Sources   Download

The Requires

 

02/02 2016

1.2

1.2.0.0 http://kizilare.net

Debugging Tools for PHP

  Sources   Download

The Requires

 

18/03 2015

1.1

1.1.0.0 http://kizilare.net

Debugging Tools for PHP

  Sources   Download

The Requires

  • php >=5.3.0

 

28/11 2014

1.0

1.0.0.0 http://kizilare.net

Debugging Tools for PHP

  Sources   Download

The Requires

  • php >=5.3.0