[PHP]=>how to use serialize function to change only one value in file?

hollo

New member
$vars = array(
'a' => 'aaaaa',
'b' => 'bbbbb',
'd' => 'xxxxx',
);
file_put_contents('txtfile.txt',serialize($vars));

so what script i should use to change only one value in file???
 
Back
Top