To install json2php you could clone the project from Github or use NPM to install it.
$ npm install json2php
Convert JavaScript object/array/string/number/boolean to string that is the corresponding PHP representation.
When the content is just a string the output will be the same string.
s = json2php('Hello World!')
// => s = 'Hello World!'
Numbers are the same.
s = json2php(123)
// => s = '123'
s = json2php( true )
// => s = 'true'
null
and undefined
are returned as null
s = json2php(undefined)
// => s = 'null'
s = json2php([1, 2, 3])
// => s = 'array(1, 2, 3)'
s = json2php({a: 1, b: 2, c: 'text', false: true, undefined: null})
// => s = "array('a' => 1, 'b' => 2, 'c' => 'text', 'false': true, 'undefined': null)"
s = json2php(new Date())
// => s = "null"
To run test we use mocha
framework.
$ npm test
But in any case you will depend on coffee-script
$ npm run build
- Update and clean up (thanks to @SumoTTo)
- Add boolean type (thanks to @SumoTTo)
- Fix for single quotes escaping (thanks to @ksky521)
- Fixed the case when non-valid JSON is passed
- Fixing the bug with the object section
- Adding the package.json to Git repository, also package dependancy
- Changes into the file structure
- Adding CoffeeScript source ( Not finished yet )
- Adding Cakefile and task
test
- Adding Mocha for test framework.
- Adding
test
,src
,lib
directory - Adding tests
- Init the project into NPM
- module.exports for Node.js
- Added json2php into the global scope with global.json2php