PHP Classes

File: README.md

Recommend this page to a friend!
  Classes of Martin Latter   PHP Dump All Variables and Functions   README.md   Download  
File: README.md
Role: Documentation
Content type: text/markdown
Description: Documentation
Class: PHP Dump All Variables and Functions
Display global names and stack backtrace
Author: By
Last change:
Date: 3 years ago
Size: 398 bytes
 

Contents

Class file image Download

Dump PHP

Display global names and backtrace.

Dump the global namespace.

Usage

    new Dump( [ 'all' | string method_name | array (method_names) ] [, boolean output_type] );

Examples

    require('Dump.class.php');

    new Dump();

    new Dump('displayFunctions', TRUE);

    new Dump( ['displayMemory', 'backtrace'] );