ovidigital / js-object-to-json
PHP library to convert a JavaScript object string to JSON formatted string
Installs: 148 648
Dependents: 6
Suggesters: 0
Security: 0
Stars: 19
Watchers: 2
Forks: 9
Open Issues: 3
Requires
- php: ^7.0 || ^8.0
Requires (Dev)
- phpunit/phpunit: ^6.0 || ^7.0 || ^8.0 || ^9.0
README
PHP library to convert a JavaScript object string to JSON formatted string
Installation
composer require ovidigital/js-object-to-json
Usage
// A variable containing a JavaScript object as a string $jsObjectString = "{ foo: 'bar' }"; // Convert the JavaScript object to JSON format $json = \OviDigital\JsObjectToJson\JsConverter::convertToJson($jsObjectString); // Alternatively convert the JavaScript object to a PHP array $phpArray = \OviDigital\JsObjectToJson\JsConverter::convertToArray($jsObjectString);
Contributing
Feel free to submit a pull request or create an issue.
License
This project is licensed under the terms of the MIT license.
Check the LICENSE.md file for license rights and limitations.