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

https://github.com/thomaslorentsen/php-valid-json

Tests what JSON is valid in PHP
https://github.com/thomaslorentsen/php-valid-json

json php php7

Last synced: 3 months ago
JSON representation

Tests what JSON is valid in PHP

Awesome Lists containing this project

README

          

[![Build Status](https://travis-ci.org/thomaslorentsen/php-valid-json.svg?branch=master)](https://travis-ci.org/thomaslorentsen/php-valid-json)
# PHP Valid JSON
A Unit Test suite of what JSON is valid in PHP.

## JSON that throws an exception in PHP7
Passing null into ```json_decode``` results in an error
```php
json_decode(null)
```