professional-ajax-07-Autosuggest-Example-JSON.php / php
<?php // +----------------------------------------------------------------------+ // | PHP version 4 | // +----------------------------------------------------------------------+ // | Copyright (c) 2005 Michal Migurski | // +----------------------------------------------------------------------+ // | This source file is subject to version 3.0 of the PHP license, | // | that is bundled with this package in the file LICENSE, and is | // | available through the world-wide-web at the following url: | // | http://www.php.net/license/3_0.txt. | // | If you did not receive a copy of the PHP license and are unable to | // | obtain it through the world-wide-web, please send a note to | // | license@php.net so we can mail you a copy immediately. | // +----------------------------------------------------------------------+ // | Author: Michal Migurski, mike-json[at]teczno[dot]com | // | with contributions from: | // | Matt Knapp, mdknapp[at]gmail[dot]com | // | Brett Stimmerman, brettstimmerman[at]gmail[dot]com | // +----------------------------------------------------------------------+ // // /* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */ define('JSON_SLICE', 1); define('JSON_IN_STR', 2); define('JSON_IN_ARR', 4); define('JSON_IN_OBJ', 8); define('JSON_IN_CMT', 16); define('JSON_LOOSE_TYPE', 10); define('JSON_STRICT_TYPE', 11);
JSON Conversion to and from JSON format. See http://json.org for details. note all strings should be in ASCII or UTF-8 format!
class JSON {
function JSON constructor
parameter: use int object behavior: when encoding or decoding, be loose or strict about object/array usage possible values: JSON_STRICT_TYPE - strict typing, default "{...}" syntax creates objects in decode JSON_LOOSE_TYPE - loose typing "{...}" syntax creates associative arrays in decode
function JSON(this->use =
function encode encode an arbitrary variable into JSON format
parameter: var mixed any number, boolean, string, array, or object to be encoded. see argument 1 to JSON() above for array-parsing behavior. if var is a strng, note that encode() always expects it to be in ASCII or UTF-8 format!
returns: string JSON string representation of input var
function encode(var) { switch(gettype(var ? 'true' : 'false'; case 'NULL': return 'null'; case 'integer': return sprintf('\ %d',\ %f', 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}); if(ascii .= '\b'; } elseif(ascii .= '\t'; } elseif(ascii .= '\n'; } elseif(ascii .= '\f'; } elseif(ascii .= '\r'; } elseif((ord_var_c == 0x2F) || (ascii .= '\\'.c}; // double quote, slash, slosh } elseif((ord_var_c <= 0x7F)) { // characters U-00000000 - U-0000007F (same as ASCII) var{}; // most normal ASCII chars } elseif((ord_var_c & 0xE0) == 0xC0) { // characters U-00000080 - U-000007FF, mask 110XXXXX, see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8 ord_var_c, ord(c+1})); ascii .= sprintf('\u%04s', bin2hex(mb_convert_encoding(ord_var_c & 0xF0) == 0xE0) { // characters U-00000800 - U-0000FFFF, mask 1110XXXX, see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8 ord_var_c, ord(c+1}), ord(c+2})); ascii .= sprintf('\u%04s', bin2hex(mb_convert_encoding(ord_var_c & 0xF8) == 0xF0) { // characters U-00010000 - U-001FFFFF, mask 11110XXX, see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8 ord_var_c, ord(c+1}), ord(c+2}), ord(c+3})); ascii .= sprintf('\u%04s', bin2hex(mb_convert_encoding(ord_var_c & 0xFC) == 0xF8) { // characters U-00200000 - U-03FFFFFF, mask 111110XX, see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8 ord_var_c, ord(c+1}), ord(c+2}), ord(c+3}), ord(c+4})); ascii .= sprintf('\u%04s', bin2hex(mb_convert_encoding(ord_var_c & 0xFE) == 0xFC) { // characters U-04000000 - U-7FFFFFFF, mask 1111110X, see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8 ord_var_c, ord(c+1}), ord(c+2}), ord(c+3}), ord(c+4}), ord(c+5})); ascii .= sprintf('\u%04s', bin2hex(mb_convert_encoding(\ %s"', ascii); case 'array': // As per JSON spec if any array key is not an integer we must treat the the whole array as an object. // We also try to catch a sparsely populated associative array with numeric keys here because some JS // engines will create an array with empty indexes up to max_index which can cause memory issues // and because the keys, which may be relevant, will be remapped otherwise. // // As per the ECMA and JSON specification an object may have any string as a property. Unfortunately due to a // hole in the ECMA specification if the key is a ECMA reserved word or starts with a digit the parameter is only // accessible using ECMAScript's bracket notation. // treat as a JSON object if(is_array(var) > 0 && (array_keys(var) - 1))) { return sprintf('{\ %s}', join(',', array_map(array(var), array_values(\ %s]', join(',', array_map(array(this, 'encode'), vars = get_object_vars(\ %s}', join(',', array_map(array(this, 'name_value'), array_keys(vars)))); default: return ''; } }
function enc alias for encode()
function enc(this->encode(
function name_value array-walking function for use in generating JSON-formatted name-value pairs
parameter: name string name of key to use
parameter: value mixed reference to an array element to be encoded
returns: string JSON-formatted name-value pair, like '"name":value'
function name_value(name,\ %s:\ %s", this->encode(strval(this->encode(
function reduce_string reduce a string by removing leading and trailing comments and whitespace
parameter: str string string value to strip of comments and whitespace
returns: string string value stripped of comments and whitespace
function reduce_string(str) { #m', '', // eliminate single line comments in '// ...' form str = preg_replace('#^\s*/\*(.+)\*/#Us', '', // eliminate multi-line comments in '/* ... */' form, at start of string str = preg_replace('#/\*(.+)\*/\s*str); // eliminate multi-line comments in '/* ... */' form, at end of string str); // eliminate extraneous space return
function decode decode a JSON string into appropriate variable
parameter: str string 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!
function decode(str) { this->reduce_string(str)) { case 'true': return true; case 'false': return false; case 'null': return null; default: if(is_numeric(str; // This would work on its own, but I'm trying to be good about returning integers where appropriate return ((float)str) ? (integer)str; } elseif(preg_match('/^".+"str) || preg_match('/^\'.+\'str)) { // 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 == '\b') { c+=1; } elseif(utf8 .= chr(0x09); substr_chrs_c_2 == '\n') { c+=1; } elseif(utf8 .= chr(0x0C); substr_chrs_c_2 == '\r') { c+=1; } elseif((substr_chrs_c_2 == '\\"') || (substr_chrs_c_2 == '\\/'))) { chrs{++}; } elseif((delim == "'") && ((substr_chrs_c_2 == '\\\\') || (utf8 .= c}; } elseif(preg_match('/\\\u[0-9A-F]{4}/i', substr(c, 6))) { // single, escaped unicode character chrs, (chrs, (utf8 .= mb_convert_encoding(c+=5; } elseif((ord_chrs_c <= 0x7F)) { chrs{}; } elseif((ord_chrs_c & 0xE0) == 0xC0) { // characters U-00000080 - U-000007FF, mask 110XXXXX, see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8 chrs, c += 1; } elseif((utf8 .= substr(c, 3); ord_chrs_c & 0xF8) == 0xF0) { // characters U-00010000 - U-001FFFFF, mask 11110XXX, see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8 chrs, c += 3; } elseif((utf8 .= substr(c, 5); ord_chrs_c & 0xFE) == 0xFC) { // characters U-04000000 - U-7FFFFFFF, mask 1111110X, see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8 chrs, c += 5; } } return /s', /s', str{0} == '[') { arr = array(); } else { if(stk = array(JSON_IN_OBJ); stk = array(JSON_IN_OBJ); stk, array('what' => JSON_SLICE, 'where' => 0, 'delim' => false)); str, 1, -1); this->reduce_string(chrs == '') { if(reset(arr; } else { return chrs}\n"); chrs); for(c <= c++) { stk); chrs, c == chrs{top['what'] == JSON_SLICE))) { // found a comma that is not inside a string, array, etc., OR we've reached the end of the character list chrs, c - stk, array('what' => JSON_SLICE, 'where' => (c}: ".substr(top['where'], (1 + top['where']))."\n"); if(reset(arr, slice)); } elseif(reset(/Uis', parts)) { // "name":value pair this->decode(val = parts[2]); if(obj[val; } else { key = /Uis', parts)) { // name:value pair, where name is unquoted parts[1]; this->decode(this->use == JSON_LOOSE_TYPE) { key] = obj->val; } } } } elseif(((c} == '"') || (c} == "'")) && (stk, array('what' => JSON_IN_STR, 'where' => chrs{c}\n"); } elseif((c} == top['what'] == JSON_IN_STR) && ((c - 1} != "\\") || (c - 1} == "\\" && c - 2} == "\\"))) { // found a quote, we're in a string, and it's not escaped array_pop(c}: ".substr(top['where'], (1 + 1 + top['where']))."\n"); } elseif((c} == '[') && in_array(stk, array('what' => JSON_IN_ARR, 'where' => c}\n"); } elseif((c} == ']') && (stk); //print("Found end of array at {chrs, c - chrs{top['what'], array(JSON_SLICE, JSON_IN_ARR, JSON_IN_OBJ))) { // found a left-brace, and we are in an array, object, or slice array_push(c, 'delim' => false)); //print("Found start of object at {chrs{top['what'] == JSON_IN_OBJ)) { // found a right-brace, and we're in an object array_pop(c}: ".substr(top['where'], (1 + top['where']))."\n"); } elseif((/*') && in_array(top['what'], array(JSON_SLICE, JSON_IN_ARR, JSON_IN_OBJ))) { // found a comment start, and we are in an array, object, or slice array_push(c, 'delim' => false)); c}\n"); } elseif((') && (top['what'] == JSON_IN_CMT)) { // found a comment end, and we're in one now array_pop(c++; for(top['where']; c; chrs = substr_replace(i, 1); //print("Found end of comment at {chrs, c - stk) == JSON_IN_ARR) { return stk) == JSON_IN_OBJ) { return
function dec alias for decode()
function dec(var) { return var); } }
ObjectFromJSON Generic object wrapper, used in object returns from decode()
class ObjectFromJSON { function ObjectFromJSON() {} } ?>
(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.