2017 © Pedro Peláez
 

library debug

A simple class to print pretty values in PHP

image

fredericomartini/debug

A simple class to print pretty values in PHP

  • Saturday, November 26, 2016
  • by fredericomartini
  • Repository
  • 1 Watchers
  • 0 Stars
  • 7 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

debug

A simple class to print pretty values in PHP, (*1)

Installation

There is one recommended way to install debug via Composer:, (*2)

  • adding the dependency to your composer.json file:
  "require": {
      ..
      "fredericomartini/debug":"0.1.*",
      ..
  }

Simple usage

include_once 'Debug.php';

$var = array(
    'value' => array(
        'test' => 123
    ),
    'another_value' => '5555'
);
\Fma\Debug::run($var);

Output

Array
(
    [value] => Array
        (
            [test] => 123
        )

    [another_value] => 5555
)

The Versions

26/11 2016

dev-master

9999999-dev

A simple class to print pretty values in PHP

  Sources   Download

MIT

The Requires

  • php >=5.5

 

by Frederico Martini

debug php echo print tool

26/11 2016

v0.1.0

0.1.0.0

A simple class to print pretty values in PHP

  Sources   Download

MIT

The Requires

  • php >=5.5

 

by Frederico Martini

debug php echo print tool