https://github.com/wilon/simple-php-debug
Simple PHP Debug, better output and write log.
https://github.com/wilon/simple-php-debug
php-debug php-library
Last synced: 3 months ago
JSON representation
Simple PHP Debug, better output and write log.
- Host: GitHub
- URL: https://github.com/wilon/simple-php-debug
- Owner: wilon
- License: mit
- Created: 2017-02-10T02:54:02.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-08-16T03:06:17.000Z (over 8 years ago)
- Last Synced: 2025-01-26T07:07:59.284Z (12 months ago)
- Topics: php-debug, php-library
- Language: PHP
- Homepage:
- Size: 13.7 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SimplePHPDebug
[![Packagist][badge_package]][link-packagist]
[![Packagist Release][badge_release]][link-packagist]
[![Packagist Downloads][badge_downloads]][link-packagist]
[badge_package]: https://img.shields.io/badge/package-wilon/simple--php--debug-blue.svg?style=flat-square
[badge_release]: https://img.shields.io/packagist/v/wilon/simple-php-debug.svg?style=flat-square
[badge_downloads]: https://img.shields.io/packagist/dt/wilon/simple-php-debug.svg?style=flat-square
[link-packagist]: https://packagist.org/packages/wilon/simple-php-debug
Simple PHP Debug, better output on browser and write log.
## Installation & loading
Just add this line to your `composer.json` file:
```json
"wilon/simple-php-debug": "^0.1.7"
```
or
```sh
composer require wilon/simple-php-debug
```
## A Simple Example
```php
';
$array = pathinfo('C:/test/wilon/index.php');
var_dump($longStr, $htmlStr, $array);
simple_dump($longStr, $htmlStr, $array);
```
