Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | - add PHP_INSTALL_HEADERS to all parts (core&exts) exposing headers, ↵ | Pierre Joye | 2010-12-11 | 1 | -0/+1 | |
| | | | | | | | | generate the install-headers cmd | |||||
* | | Implement FR #44331 (Formatting option for json_encode). Bikeshedding about the | Adam Harvey | 2010-09-16 | 3 | -1/+88 | |
| | | | | | | | | | | | | exact form of the JSON pretty printing and brace handling will only be accepted in the form of patches. ;) | |||||
* | | Rebalance the folds in json.c. | Adam Harvey | 2010-09-16 | 1 | -1/+3 | |
| | | ||||||
* | | Implemented FR #49366 (Make slash escaping optional in json_encode()). | Adam Harvey | 2010-09-16 | 3 | -1/+19 | |
| | | ||||||
* | | Fix English in the error message emitted when json_decode() is called with | Adam Harvey | 2010-09-14 | 1 | -1/+1 | |
| | | | | | | | | | | depth <= 0. | |||||
* | | Fix bug #52262 - Invalid UTF-8 documents don't set an error code when they ↵ | Scott MacVicar | 2010-07-06 | 1 | -0/+1 | |
| | | | | | | | | fail to decode. | |||||
* | | Ooops, return values... | Sara Golemon | 2010-05-21 | 2 | -2/+2 | |
| | | ||||||
* | | Add JSON_BIGINT_AS_STRING for json_decode() to parse large numbers | Sara Golemon | 2010-05-21 | 6 | -16/+83 | |
| | | | | | | | | | | as strings rather than casting to double and loosing precision. | |||||
* | | Added support for JSON_NUMERIC_CHECK option in json_encode() that converts | Ilia Alshanetsky | 2010-05-20 | 4 | -12/+64 | |
| | | | | | | | | | | | | numeric strings to integers. | |||||
* | | Rename JSON_Serializable to JsonSerializable per ML discussion | Sara Golemon | 2010-05-12 | 2 | -5/+4 | |
| | | ||||||
* | | Well we do need zend_throw_exception_ex ;-) | Kalle Sommer Nielsen | 2010-05-06 | 1 | -0/+1 | |
| | | ||||||
* | | Add JSON_Serializable interface | Sara Golemon | 2010-05-05 | 3 | -1/+138 | |
| | | | | | | | | | | | | | | | | Objects implementing JSON_Serializable will have their ->jsonSerialize() method called Similar to serialize() and __sleep() | |||||
* | | revert change #298288: Remove old dsp/dsw/makefile files | Rob Richards | 2010-04-28 | 1 | -0/+135 | |
| | | ||||||
* | | Remove old dsp/dsw/makefile files, these arent used by the build system ↵ | Kalle Sommer Nielsen | 2010-04-21 | 1 | -135/+0 | |
| | | | | | | | | anymore and are barely updated nor available for all extensions | |||||
* | | - Fixed bug #51590 (JSON_ERROR_UTF8 is undefined) | Felipe Pena | 2010-04-18 | 1 | -0/+1 | |
| | | ||||||
* | | - Fixed tests | Felipe Pena | 2010-04-03 | 2 | -8/+2 | |
| | | ||||||
* | | Remove main/php3_compat.h, for that a few references to `function_entry` have | Johannes Schlüter | 2010-03-30 | 1 | -1/+1 | |
|/ | | | | | to be replaced by `zend_function_entry`. | |||||
* | sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.php | Sebastian Bergmann | 2010-01-03 | 2 | -2/+2 | |
| | ||||||
* | Fix broken json tests in all branches | Rasmus Lerdorf | 2009-08-03 | 1 | -16/+8 | |
| | ||||||
* | MFH: Add error constant when json_encode detects an invalid UTF-8 sequence. | Scott MacVicar | 2009-07-27 | 2 | -0/+3 | |
| | ||||||
* | fix tests corrupted by svn's eol-style=native | Alexey Zakhlestin | 2009-07-15 | 2 | -32/+16 | |
| | ||||||
* | fix json shared build on Windows | Stanislav Malyshev | 2009-06-30 | 2 | -4/+10 | |
| | ||||||
* | - MFH: Fixed memleak when depth arg is less than zero | Felipe Pena | 2009-06-24 | 1 | -0/+1 | |
| | ||||||
* | The json header should be installed so other exts can use it | Johannes Schlüter | 2009-06-23 | 1 | -0/+1 | |
| | ||||||
* | New json extension tests. Tested on Windows, Linux and Linux 64 bit. | andy wharmby | 2009-06-14 | 5 | -0/+450 | |
| | ||||||
* | Fix the build. | Andrei Zmievski | 2009-05-31 | 1 | -0/+1 | |
| | ||||||
* | MFH: no dots in errors | Jani Taskinen | 2009-05-31 | 1 | -3/+3 | |
| | ||||||
* | Expose encode/decode API. | Andrei Zmievski | 2009-05-31 | 2 | -43/+53 | |
| | ||||||
* | Cast to unsigned char to prevent compiler warning | Kalle Sommer Nielsen | 2009-05-19 | 1 | -1/+1 | |
| | ||||||
* | MFH: Fix arginfo | Kalle Sommer Nielsen | 2009-05-15 | 1 | -0/+1 | |
| | ||||||
* | MFH Allow a custom recursion depth to be specified for json_decode() | Scott MacVicar | 2009-05-14 | 3 | -7/+15 | |
| | ||||||
* | Rebuild credits, was missed in previous RC | Scott MacVicar | 2009-04-02 | 1 | -1/+1 | |
| | ||||||
* | MFH: Avoid 2 conversions when decoding numbers | Matt Wilmas | 2009-03-19 | 1 | -6/+17 | |
| | ||||||
* | MFH Missing skip in tests | Scott MacVicar | 2009-03-17 | 1 | -0/+2 | |
| | ||||||
* | MFH Replace magic values with a define for json encoding, makes reading it a ↵ | Scott MacVicar | 2009-03-17 | 1 | -7/+10 | |
| | | | | bit easier | |||||
* | MFH Add PHP_JSON_FORCE_OBJECT for forcing an object output of an array | Scott MacVicar | 2009-03-17 | 2 | -1/+13 | |
| | ||||||
* | MFH Deal with overflow when decoding large numbers | Scott MacVicar | 2009-03-17 | 1 | -2/+3 | |
| | ||||||
* | MFH Fix bug #47644 - Valid integers are truncated with json_decode() | Scott MacVicar | 2009-03-17 | 2 | -4/+47 | |
| | ||||||
* | Fix tests. Add missing SKIPIF. Tested on Windows, Linux and Linux 64 | andy wharmby | 2009-01-23 | 2 | -10/+16 | |
| | ||||||
* | Fix test again... | Scott MacVicar | 2009-01-08 | 1 | -2/+2 | |
| | ||||||
* | Fix broken test | Scott MacVicar | 2009-01-08 | 1 | -1/+4 | |
| | ||||||
* | MFH Fix bug #46944 - UTF-8 characters outside the BMP aren't encoded correctly. | Scott MacVicar | 2009-01-02 | 3 | -2/+34 | |
| | ||||||
* | MFH: Bump copyright year, 3 of 3. | Sebastian Bergmann | 2008-12-31 | 2 | -2/+2 | |
| | ||||||
* | MFH Make sure we clear out the error when the scalar version decoding works. | Scott MacVicar | 2008-12-24 | 1 | -0/+6 | |
| | ||||||
* | MFH Add json_last_error() for getting a bit of information about what failed ↵ | Scott MacVicar | 2008-12-19 | 5 | -28/+107 | |
| | | | | | | | during a decode, also fixes a segfault when we have [1} [DOC] | |||||
* | MFH Fix Windows build | Scott MacVicar | 2008-12-17 | 1 | -0/+3 | |
| | ||||||
* | MFH Test for bug #45791 | Scott MacVicar | 2008-12-17 | 1 | -0/+13 | |
| | ||||||
* | Update the JSON parser with that on json.org, biggest change here is code ↵ | Scott MacVicar | 2008-12-17 | 3 | -461/+422 | |
| | | | | | | | | | readability. Less magic numbers in the state table. Add missing reflection information to json_encode() Fixes bug #45791 with 0e0 not being supported as a value Error values are stored when encountered during parsing | |||||
* | MFH Fix bug #45989 - json_decode() doesn't return NULL on certain invalid ↵ | Scott MacVicar | 2008-12-12 | 3 | -17/+10 | |
| | | | | strings | |||||
* | MFH: Changed logic for LONG_MIN | Matt Wilmas | 2008-12-02 | 1 | -1/+1 | |
| |