Convert PHP Array to JSON
Input data
This form allows you convert PHP array to JSON, you only need to insert the array syntax [...]
or array(...)
, paste or upload your array below:
Result of converting a PHP array to JSON
About PHP array conversion to JSON
About this tool
The Convert PHP array to JSON was created for online converting array of PHP into appropriate JSON. This can come in handy for testing or debugging your arrays, also for fast formatting and adding JSON object to your config or anywhere else.
How it Works?
Just paste your PHP array to the textarea above and click to the button "Convert" and you will get JSON in the next textarea. PHP array should be without variables and functions, there should be a clean syntax like [...]
or array(...)
.
Example of conversion PHP array to JSON
Before:[ 'first_section' => [ 'one' => '1', 'test' => 'sample', 'animal' => 'BIRD', ], 'second_section' => [ 'path' => '/var/test', 'URL' => 'https://wtools.io/', 'second_section' => [ 'one' => '1 associated', 'two' => '2 associated', 0 => '1 unassociated', 1 => '2 unassociated', ], ], 'third_section' => [ 'version' => ['7.0','7.1','7.2','7.3'], ], ]After:
{ "first_section": { "one": "1", "test": "sample", "animal": "BIRD" }, "second_section": { "path": "/var/test", "URL": "https://wtools.io/", "second_section": { "one": "1 associated", "two": "2 associated", "0": "1 unassociated", "1": "2 unassociated" } }, "third_section": { "version": ["7.0", "7.1", "7.2", "7.3"] } }After the conversion, you can apply the JSON to your project or use it for some other purpose.
Did you like this tool? You can donate to us. This will help us improve our free web tools.
Paypal