alexkratky / variable-to-json
Convert any variable or object to json.
v1.0.0
2020-05-14 09:19 UTC
Requires
- php: >=7.0
This package is auto-updated.
Last update: 2024-11-12 17:30:06 UTC
README
Convert any variable or object to json.
Installation
composer require alexkratky/variable-to-json
Usage
require 'vendor/autoload.php'; use AlexKratky\VariableToJson; $x = new TestClass(); // test class $x->load(); $x->load2(); $x->load3(); file_put_contents("output.json", VariableToJson::convert($x, true)); file_put_contents("output2.json", VariableToJson::convert([ 'test' => 1 ], true)); file_put_contents("output3.json", VariableToJson::convert(function(string $text ="xx") { echo $text; }, true));
Custom options
setDepth($maxDepth = 5)
- Set maximum depth of object's scansetLength($maxLength = 300)
- Set maximum string length