psJsonRead() Read a JSON formated variable from a file
Description:
This reads in a JSON formated variable from a file. This is nice for when you need to read / write an array of data to a file and keep keys and values intact.
Usage:
$var = psJsonRead("/tmp/file.dat");
Example:
Code:
function psJsonRead($wFile) { $ary = json_decode(trim(psFileGetContents($wFile)),true); return $ary; }
Changlelog:
|
|