https://github.com/jbzoo/jbdump
Dump any PHP variables as HTML pretty print.
https://github.com/jbzoo/jbdump
debug dumper php php-tools php7 print-r tools var-dump var-dumper var-export
Last synced: about 2 months ago
JSON representation
Dump any PHP variables as HTML pretty print.
- Host: GitHub
- URL: https://github.com/jbzoo/jbdump
- Owner: JBZoo
- License: gpl-2.0
- Created: 2014-08-15T06:07:15.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2021-03-31T09:24:14.000Z (about 4 years ago)
- Last Synced: 2025-04-11T12:14:53.929Z (about 2 months ago)
- Topics: debug, dumper, php, php-tools, php7, print-r, tools, var-dump, var-dumper, var-export
- Language: PHP
- Homepage:
- Size: 559 KB
- Stars: 19
- Watchers: 6
- Forks: 5
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
JBDump
======Script for dumping PHP vars and other debugging.
To put it simply, this tool is a perfectly replacement for print_r() and var_dump().## Output example

## Install
Just include class.jbdump.phpYou can see examples init:
`php.ini` `.htaccess` `include`
# php.ini for windows
```sh
auto_prepend_file = Z:\home\adm\jbdump\class.jbdump.php
```
# php.ini for unix-like
```sh
auto_prepend_file = /var/www/jdump/data/public_html/class.jbdump.php
```
# .htaccess```sh
php_value auto_prepend_file C:\OpenServer\domains\jbdump\class.jbdump.php
```# include
```sh
include './jbdump/class.jbdump.php';
```## Using
`jbdump($myVar);`## Live demo
http://jbdump.org/test/## Composer
composer require "jbzoo/jbdump:1.x-dev"