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/bigint/boolean/Date 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!'
Number and BigInt types are the same.
s = json2php(123)
// => s = '123'
b = json2php(BigInt(123))
// => b = '123'
s = json2php( true )
// => s = 'true'
null
and undefined
are returned as null
s = json2php(undefined)
// => s = 'null'
Symbol
and Function
are returned as null
s = json2php(Symbol(test))
// => s = 'null'
f = json2php(function greet(name) { return `Hello, ${name}!`; })
// => f = 'null'
Dates are formatted to string using toISOString
method
s = json2php(new Date('2020-06-19 18:20:34')))
// => s = '2020-06-19T15:20:34.000Z'
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"
Create custom 'printers' with json2php.make
:
const printer = json2php.make({linebreak:'\n', indent:'\t', shortArraySyntax: true})
printer({one: 3, two: 20, three: [9, 3, 2]})
/* result:
[
'one' => 3,
'two' => 20,
'set' => [
9,
3,
2
]
]
*/
To compress the output (e.g. to make the resulting PHP as small as possible), use shortArraySyntax
with stripSpaces
:
const printer = json2php.make({shortArraySyntax: true, stripSpaces: true})
printer({
arr: [1, 2, 3, 4, 5, {foo: 'surprise!'}],
obj: {
arr: [{foo: 'bar', bar: 'baz', arr2: [1, 2]}]
}
})
// result:
// ['arr'=>[1,2,3,4,5,['foo'=>'surprise!']],'obj'=>['arr'=>[['foo'=>'bar','bar'=>'baz','arr2'=>[1,2]]]],'test'=>'str']
- Up the release management & cleanup
- Add support for Date and BigInt types
- Rewrite to TypeScript
- Add
stripSpaces
to pretty print options (thanks to @noahtallen)
- Add
shortArraySyntax
to pretty print options
- Add pretty print capability via
json2php.make
(thanks to @stokesman)
- 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 dependency
- 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