trurlmcbyte / serpri
SERialized smart object pretty PRInt for php
Installs: 40
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 1
Type:class
Requires
- php: >=5.3.1
Requires (Dev)
- evert/phpdoc-md: ~0.1.1
- phpdocumentor/phpdocumentor: 2.*
- phpunit/phpunit: 5.0.*
This package is not auto-updated.
Last update: 2024-01-03 20:49:24 UTC
README
SERialized smart object pretty PRInt for php.
Usefull to compact print crosslinked and recursive objects. In HTML mode also creating links between recusive and referal objects. May show raw serialized data without original clases. Low memory consumption in file mode with large files (mostly used stream get|print). Fast (and bit furious). No any composers or waving a dead chicken required
Usage
Simple way
Download this class
wget https://raw.githubusercontent.com/TrurlMcByte/serpri/master/serpri.php
And just include_once 'serpri.php';
Calls examples:
(new \serpri($SomeSmartObject))->process(2);
$p=new \serpri('file_with_serialized.dump'); $p->process(2);
"Hard" way
composer require trurlmcbyte/serpri