topical media & game development
professional-ajax-09-AjaxMail-inc-JSON.php / php
<?php
/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */
Converts to and from JSON format.
JSON (JavaScript Object Notation) is a lightweight data-interchange
format. It is easy for humans to read and write. It is easy for machines
to parse and generate. It is based on a subset of the JavaScript
Programming Language, Standard ECMA-262 3rd Edition - December 1999.
This feature can also be found in Python. JSON is a text format that is
completely language independent but uses conventions that are familiar
to programmers of the C-family of languages, including C, C++, C#, Java,
JavaScript, Perl, TCL, and many others. These properties make JSON an
ideal data-interchange language.
This package provides a simple encoder and decoder for JSON notation. It
is intended for use with client-side Javascript applications that make
use of HTTPRequest to perform server communication functions - data can
be encoded into JSON notation for use in a client-side javascript, or
decoded from incoming Javascript requests. JSON format is native to
Javascript, and can be directly eval()'ed with no further parsing
overhead
All strings should be in ASCII or UTF-8 format!
PHP versions 4 and 5
LICENSE: Redistribution and use in source and binary forms, with or
without modification, are permitted provided that the following
conditions are met: Redistributions of source code must retain the
above copyright notice, this list of conditions and the following
disclaimer. Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following disclaimer
in the documentation and/or other materials provided with the
distribution.
THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
NO EVENT SHALL CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
DAMAGE.
@category
@package
author: Michal Migurski
author: Matt Knapp
author: Brett Stimmerman
@copyright 2005 Michal Migurski
@license http://www.freebsd.org/copyright/freebsd-license.html
gray http://pear.php.net/pepr/pepr-proposal-show.php?id=198
Marker constant for JSON::decode(), used to flag stack state
define('JSON_SLICE', 1);
Marker constant for JSON::decode(), used to flag stack state
define('JSON_IN_STR', 2);
Marker constant for JSON::decode(), used to flag stack state
define('JSON_IN_ARR', 4);
Marker constant for JSON::decode(), used to flag stack state
define('JSON_IN_OBJ', 8);
Marker constant for JSON::decode(), used to flag stack state
define('JSON_IN_CMT', 16);
Behavior switch for JSON::decode()
define('JSON_LOOSE_TYPE', 10);
Behavior switch for JSON::decode()
define('JSON_STRICT_TYPE', 11);
Converts to and from JSON format.
@category
@package
author: Michal Migurski
author: Matt Knapp
author: Brett Stimmerman
@copyright 2005 Michal Migurski
@license http://www.php.net/license/3_0.txt PHP License 3.0
version:
gray
see:
@since
@deprecated
class JSON
{
constructs a new JSON instance
parameter: int
function JSON(use=JSON_STRICT_TYPE)
{
use;
}
encodes an arbitrary variable into JSON format
parameter: mixed
function encode(var)
{
switch (gettype(var ? 'true' : 'false';
case 'NULL':
return 'null';
case 'integer':
return sprintf('\%d', var);
case 'string':
// STRINGS ARE EXPECTED TO BE IN ASCII OR UTF-8 FORMAT
strlen_var = strlen(c = 0; strlen_var; ++ord_var_c = ord(c});
switch (ascii .= '\b'; break;
case 0x09: ascii .= '\n'; break;
case 0x0C: ascii .= '\r'; break;
case 0x22:
case 0x2F:
case 0x5C:
// double quote, slash, slosh
var{ord_var_c >= 0x20) && (ascii .= c};
break;
case ((char = pack('C*', var{c+=1;
char, 'UTF-16', 'UTF-8');
utf16));
break;
case ((char = pack('C*', var{var{c+=2;
char, 'UTF-16', 'UTF-8');
utf16));
break;
case ((char = pack('C*', var{var{var{c+=3;
char, 'UTF-16', 'UTF-8');
utf16));
break;
case ((char = pack('C*', var{var{var{var{c+=4;
char, 'UTF-16', 'UTF-8');
utf16));
break;
case ((char = pack('C*', var{var{var{var{var{c+=5;
char, 'UTF-16', 'UTF-8');
utf16));
break;
}
}
return '"'.var) && count(var) !== range(0, sizeof(this, 'name_value'),
array_keys(var))));
}
// treat it like a regular array
return sprintf('[\%s]', join(',', array_map(array(var)));
case 'object':
var);
return sprintf('{\%s}', join(',', array_map(array(vars),
array_values(
encodes an arbitrary variable into JSON format, alias for encode()
function enc(var)
{
return var);
}
function name_value
array-walking function for use in generating JSON-formatted name-value pairs
parameter: string value reference to an array element to be encoded
returns: string JSON-formatted name-value pair, like '"name":value'
@access private
function name_value(value)
{
return (sprintf("\%s:\%s", name)), value)));
}
reduce a string by removing leading and trailing comments and whitespace
parameter:
function reduce_string(str)
{
#m',
// eliminate multi-line comments in '/* ... */' form, at start of string
'#^\s*/\*(.+)\*/#Us',
// eliminate multi-line comments in '/* ... */' form, at end of string
'#/\*(.+)\*/\s*str);
// eliminate extraneous space
return trim(
decodes a JSON string into appropriate variable
parameter: string str JSON-formatted string
returns: mixed number, boolean, string, array, or object
corresponding to given JSON input string.
See argument 1 to JSON() above for object-output behavior.
Note that decode() always returns strings
in ASCII or UTF-8 format!
@access public
function decode(str = str);
switch (strtolower(str)) {
// Lookie-loo, it's a number
// This would work on its own, but I'm trying to be
// good about returning integers where appropriate:
// return (float)str == (integer)str
: (float)/s', m) && m[2]) {
// STRINGS RETURNED IN UTF-8 FORMAT
str, 0, 1);
str, 1, -1);
strlen_chrs = strlen(c = 0; strlen_chrs; ++substr_chrs_c_2 = substr(c, 2);
chrs{substr_chrs_c_2) {
case '\b': c+=1; break;
case '\t': c+=1; break;
case '\n': c+=1; break;
case '\f': c+=1; break;
case '\r': c+=1; break;
case '\\"':
case '\\\'':
case '\\\\':
case '\\/':
if ((substr_chrs_c_2 != '\\\'') ||
(substr_chrs_c_2 != '\\"')) {
chrs{++chrs, utf16 = chr(hexdec(substr(c+2), 2)))
. chr(hexdec(substr(c+4), 2)));
utf16, 'UTF-8', 'UTF-16');
ord_chrs_c >= 0x20) && (utf8 .= c};
} elseif((utf8 .= substr(c, 2); ord_chrs_c & 0xF0) == 0xE0) {
// characters U-00000800 - U-0000FFFF, mask 1110XXXX
// see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
chrs, c += 2;
} elseif((utf8 .= substr(c, 4); ord_chrs_c & 0xFC) == 0xF8) {
// characters U-00200000 - U-03FFFFFF, mask 111110XX
// see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
chrs, c += 4;
} elseif((utf8 .= substr(c, 6); utf8;
} elseif (preg_match('/^\[.*\]str) || preg_match('/^{.*}str)) {
// array, or object notation
if (stk = array(JSON_IN_ARR);
this->use == JSON_LOOSE_TYPE) {
obj = array();
} else {
obj = new stdClass();
}
}
array_push(chrs = substr(chrs = chrs);
if (stk) == JSON_IN_ARR) {
return obj;
}
}
//print("\nparsing {strlen_chrs = strlen(c = 0; strlen_chrs; ++top = end(substr_chrs_c_2 = substr(c, 2);
if ((strlen_chrs) || ((c} == ',') && (slice = substr(top['where'], (top['where']));
array_push(c + 1), 'delim' => false));
//print("Found split at {chrs, c - stk) == JSON_IN_ARR) {
// we are in an array, so just push an element onto the stack
array_push(this->decode(stk) == JSON_IN_OBJ) {
// we are in an object, so figure
// out the property name and set an
// element in an associative array,
// for now
if (preg_match('/^\s*(["\'].*[^\\\]["\'])\s*:\s*(\S.*),?slice, key = parts[1]);
this->decode(this->use == JSON_LOOSE_TYPE) {
key] = obj->val;
}
} elseif (preg_match('/^\s*(\w+)\s*:\s*(\S.*),?slice, key = val = parts[2]);
if (obj[val;
} else {
key = chrs{chrs{top['what'], array(JSON_SLICE, JSON_IN_ARR, JSON_IN_OBJ))) {
// found a quote, and we are not inside a string
array_push(c, 'delim' => c}));
//print("Found start of string at {chrs{top['delim']) &&
(chrs{chrs{chrs{stk);
//print("Found end of string at {chrs, c - chrs{top['what'], array(JSON_SLICE, JSON_IN_ARR, JSON_IN_OBJ))) {
// found a left-bracket, and we are in an array, object, or slice
array_push(c, 'delim' => false));
//print("Found start of array at {chrs{top['what'] == JSON_IN_ARR)) {
// found a right-bracket, and we're in an array
array_pop(c}: ".substr(top['where'], (1 + top['where']))."\n");
} elseif ((c} == '{') &&
in_array(stk, array('what' => JSON_IN_OBJ, 'where' => c}\n");
} elseif ((c} == '}') && (stk);
//print("Found end of object at {chrs, c - substr_chrs_c_2 == '/*') &&
in_array(stk, array('what' => JSON_IN_CMT, 'where' => c++;
//print("Found start of comment at {substr_chrs_c_2 == '*/') && (stk);
i = i <= i)
chrs, ' ', c}: ".substr(top['where'], (1 + top['where']))."\n");
}
}
if (reset(arr;
} elseif (reset(obj;
}
}
}
}
decodes a JSON string into appropriate variable; alias for decode()
function dec(this->decode(
(C) Æliens
20/2/2008
You may not copy or print any of this material without explicit permission of the author or the publisher.
In case of other copyright issues, contact the author.