Answer the question
In order to leave comments, you need to log in
Write an array to a file, in a normal way?
Hello.
Guys. How to write an array to a file?
Array ( [0] => [email protected] [1] => [email protected] )
Read about serialization and anserialization. But a burda is written to the file (
Answer the question
In order to leave comments, you need to log in
If a readable list is needed:
$str='';
foreach($massiv as $value)
{
$str.="\n\r".$value;
}
what does normal look mean to you?
serialize - Generates a storable representation of a variable
json_encode - Returns a JSON representation of the data
for arrays, both are fine.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question