taeon / php-object-explorer
Interactive PHP object explorer
Installs: 34
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/taeon/php-object-explorer
Requires
- php: >=5.4.0
This package is auto-updated.
Last update: 2025-09-23 08:54:30 UTC
README
An easier way to examine the properties of objects in PHP
Installation
Either download the ZIP file and include the autoloader.php
file, or you can use composer:
composer require taeon/php-object-explorer
Usage
Pass the data that you want to explore into a new Explorer object, and then render the result:
$explorer = new \PHPObjectExplorer\Explorer($data); echo( $explorer->Render() );
...that's it.
The output is 'collapsed' by default. Click on any property to expand it.