psJsonWrite() Writes a variable to file JSON format
Description:
This write a variable to file in a JSON format. This is nice for when you need to read / write an array of data to a file and keep keys and values intact.
Usage:
psJsonWrite($var,"/tmp/file.dat");
Example:
Code:
function psJsonWrite($data,$wFile) { file_put_contents($wFile, json_encode($data) ); }
Changlelog:
|
|