psSerialRead() Read a serialized variable from a file
Description:
This reads in a serialized 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 = psSerialRead("/tmp/file.dat");
Example:
Code:
function psSerialRead($wFile) { $ary = unserialize(trim(psFileGetContents($wFile))); return $ary; }
Changlelog:
|
|