I cannot find a way that easily lets me create a new file, treat it as an ini file (not php.ini or simiilar... a separate ini file for per user), and create/delete values using PHP. PHP seems to offer no easy way to create an ini file and read/write/delete values. So far, it's all just "read" - nothing about creating entries or manipulating keys/values.
feedback
|
|
Found following code snippet from the official PHP documentation:
Usage:
Good luck! | |||||
feedback
|
|
I can't vouch for how well it works, but there's some suggestions for implementing the opposite of You can use Does that work for you? | ||||
|
feedback
|
|
in this portion of code:
$key2 must be replaced by $key or you would find empty keys in your .ini | |||
|
feedback
|
|
PEAR has two (unit tested) packages which do the task you are longing for:
I'd rather use well tested code than writing my own. | |||
|
feedback
|
|
I use this and it seems to work
it returns the text to write to an .ini file | ||||
|
feedback
|