Description
PDOModel export to json functions allows to export data to json by passing array of data. Data needs to be passed in form of array.
Also, You can get data from select query and export data directly using this function.
Also, You can get data from select query and export data directly using this function.
Function Defination
void function arrayToJson($jsonArray) ;
Parameters Details
| Details | Type | Example |
|---|---|---|
| $jsonArray - array of data | array | 2-D array of data |
Examples
$pdomodel = new PDOModel(); //create object of the PDOModel class
/* array to json function */
$data = array( array("row1col1","row1col2","row1col3","row1col4"),array("row2col1","row2col2","row2col3","row2col4"));
$pdomodel->arrayToJson($data);
More Examples
//Example 1
$records = $pdomodel->select("emp"); //get data from table
$pdomodel->arrayToJson($records);//export it to json
Result/Output
By default, it exports json
Debug
| Option | Details | Example |
|---|---|---|
| print_r($pdomodel->error) | Print errors (if any) |