An open API service indexing awesome lists of open source software.

https://github.com/hannasdev/debug

PHP Debug helper-class
https://github.com/hannasdev/debug

Last synced: about 1 year ago
JSON representation

PHP Debug helper-class

Awesome Lists containing this project

README

          

Debug
=====
Debug is a static class the simplifies routine debugging procedures, such as rendering pretty looking (and more readable) arrays and variables in HTML.

## Examples ##
### printr() ###
PHP:
```php
'hanna', 'email' => 'info@hannasoderstrom.com'];
Debug::printr($data);
```
HTML:
```html
array(
'username' => 'hanna',
'email' => 'info@hannasoderstrom.com'
)
```

### vardump() ###
PHP:
```php