psSerialWrite() Writes a variable to file serialized
Description:
This write a variable to file in a serialized 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:
psSerialWrite($var,"/tmp/file.dat");
Example:
Code:
function psSerialWrite($data,$wFile) { file_put_contents($wFile, serialize($data) ); }
Changlelog:
|
|