This class can be used to serialize and unserialize PHP variable values in the JSON format (Javascript Object Notation). It can take a variable value of any PHP type and generates a string that represents that object in JSON format. The class can also do the opposite, i.e. take a string with a value ...
Query To JSON Support forum querytojson Convert MySQL query results to JSON format This is a very simple class that converts data from MySQL query result to JSON format. It executes a given MySQL query and extracts the results into a single array. The class calls the PHP function json_encode to ...
MySQL 2 JSON Support forum mysql_to_json Generate JSON output from MySQL query results This class can be use to Generate JSON output from MySQL query results. It takes an handle of a previously executed MySQL database query and retrieves the results to generate a JSON string with the values of all ...
This class can handle calls to JSON RPC Web services. It can register global PHP functions or functions of given PHP classes to implement Web services using the JSON RPC protocol. The Web pages can use the jQuery library to send AJAX requests using the JSON RPC protocol and this class handles the request ...
Simple JSON DB Support forum simple-json-db Store and retrieve data from files in JSON format This class can be used to store and retrieve data from files in JSON format. It can set one or more key-value pairs and save all the values to a file serializing in JSON format. The class can also open ...
l10n Support forum l10n Retrieve internationalization texts from JSON file This class can be used to retrieve application internationalization texts from a JavaScript Object Notation (JSON) files. It can read files in the JSON files that define arrays that associate original texts to translated ...
Fast JSON Support forum fastjson Encode and decode PHP values in JSON format This class can be used to encode and decode PHP data type values in JSON (Javascript Object Notation) format. It can take a value of any PHP data type and serialize it as a JSON string. Non-ASCII characters are encoded ...
This class can compress and decompress JSON data using the reduced JSON format. It can take a variable value and encode it in reduced JSON format by avoiding duplication of key names of object values inside an array. The class can also do the opposite, decode a previously encoded value in reduced JSON ...
JSON RPC Client Support forum json-rpc-client Send call requests to JSON RPC servers This class can send call requests to JSON RPC servers. It handles calls to functions of the class by sending HTTP requests to a remote JSON RPC Web server. The class takes the name of the function to call in the ...
This package implements JSON RPC protocol 2.0 client and server. There is a client class that can send HTTP requests to a given JSON RPC server to call a specified function passing any additional parameters. It can also send multiple JSON RPC requests and return the results of all calls. Another class ...