Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 428 Bytes

File metadata and controls

14 lines (12 loc) · 428 Bytes

PHPObjectBrowser

Inspect complex and reciprocal referred structure objects of a easy and visual way.

It was moved into my salodev repository See source code here

Example code of simple use.

<?php
use salodev\Debug\ObjectInspector;
session_start();
ObjectInspector::inspect($_SESSION);
die();