|
Posted by klenwell on 10/01/07 03:18
On Sep 30, 7:30 pm, Lamer <Galat...@gmail.com> wrote:
> I was wondering how to save PHP variables to a txt file and then
> retrieve them again.
>
> Example:
>
> There is an input box, after submitted the stuff that was written in
> the input box will be saved to a text file. Later on the results need
> to be brought back as a variable. So lets say the variable is $text I
> need that to be saved to a text file and be able to retrieve it back
> again.
>
> Hope it makes sense,
>
> Thanks in advance!!!
I believe serialize is usually used in cases like this:
http://www.php.net/manual/en/function.serialize.php
A while back, I wrote a function called array_smart_dump (yes, the
name makes me giggle, too) that accomplishes the same thing with
arrays a bit more literally.
It will convert an array to a string that, as I put it, is
syntactically usable, meaning you can write the string (enclosed by
appropriate php tags) to file and then later use that array by simply
including the file.
The code can be found here:
http://klenwell.googlecode.com/svn/trunk/PHP/array/array_smart_dump.inc.php
Here's a test script:
http://klenwell.googlecode.com/svn/trunk/PHP/_unit_tests/test.array_smart_dump.php
Tom
Navigation:
[Reply to this message]
|