Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
core
/
vendor
/
paypal
/
rest-api-sdk-php
/
lib
/
PayPal
/
Validation
:
JsonValidator.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace PayPal\Validation; /** * Class JsonValidator * * @package PayPal\Validation */ class JsonValidator { /** * Helper method for validating if string provided is a valid json. * * @param string $string String representation of Json object * @param bool $silent Flag to not throw \InvalidArgumentException * @return bool */ public static function validate($string, $silent = false) { @json_decode($string); if (json_last_error() != JSON_ERROR_NONE) { if ($string === '' || $string === null) { return true; } if ($silent == false) { //Throw an Exception for string or array throw new \InvalidArgumentException("Invalid JSON String"); } return false; } return true; } }