Skip to content

clean/mpr

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 

Repository files navigation

mpr

My print_r - debug function

Prints human-readable information about a variable

Installation

via Composer

Example of Usage

Dump variable and continue

mpr($variable);

Dump variable and exit

mpr($variable, 1);

When second parameter given you will get information from which file mpr was called

Who called me: mpr/test.php line 14

Output

Objects

--MPR--Foo Object
(
    [name] => Foo
    [data:protected] => Array
        (
            [0] => 1
            [1] => 2
            [2] => 3
            [3] => 4
        )

)

Array

--MPR--Array
(
    [x] => Hello
    [y] => Array
        (
            [0] => 1
            [1] => 2
            [2] => 3
            [3] => 4
        )

    [z] => stdClass Object
        (
            [0] => a
            [1] => b
            [2] => c
        )

)

Scalar

--MPR--string(5) "Hello"

About

My print_r - debug function

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages