up vote 12 down vote favorite
5
share [g+] share [fb]

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.

link|improve this question

when you say "per user", what do you mean? Per use of the PHP application? – Peter Bailey Aug 12 '09 at 20:02
1  
why do you need an .ini file per user? shouldn't that type of information be stored in a DB? – Omnipresent Aug 12 '09 at 20:09
well, i meant that i want an ini file set for each user of the same PHP application. For example, chad.ini, jeff.ini, mary.ini, anne.ini – netrox Aug 12 '09 at 20:10
@netrox, I think Peter Bailey's getting at what you mean by user - the username on the host machine (the username apache's running under or whatever), or the end-user of your application (i.e. the person accessing it in a browser)? – Dominic Rodger Aug 12 '09 at 20:12
1  
btw - welcome to stackoverflow.com - great first question! – Dominic Rodger Aug 12 '09 at 20:13
show 3 more comments
feedback

5 Answers

up vote 9 down vote accepted

Found following code snippet from the official PHP documentation:

function write_ini_file($assoc_arr, $path, $has_sections=FALSE) { 
    $content = ""; 
    if ($has_sections) { 
        foreach ($assoc_arr as $key=>$elem) { 
            $content .= "[".$key."]\n"; 
            foreach ($elem as $key2=>$elem2) { 
                if(is_array($elem2)) 
                { 
                    for($i=0;$i<count($elem2);$i++) 
                    { 
                        $content .= $key2."[] = \"".$elem2[$i]."\"\n"; 
                    } 
                } 
                else if($elem2=="") $content .= $key2." = \n"; 
                else $content .= $key2." = \"".$elem2."\"\n"; 
            } 
        } 
    } 
    else { 
        foreach ($assoc_arr as $key=>$elem) { 
            if(is_array($elem)) 
            { 
                for($i=0;$i<count($elem);$i++) 
                { 
                    $content .= $key2."[] = \"".$elem[$i]."\"\n"; 
                } 
            } 
            else if($elem=="") $content .= $key2." = \n"; 
            else $content .= $key2." = \"".$elem."\"\n"; 
        } 
    } 

    if (!$handle = fopen($path, 'w')) { 
        return false; 
    } 
    if (!fwrite($handle, $content)) { 
        return false; 
    } 
    fclose($handle); 
    return true; 
}

Usage:

$sampleData = array(
                'first' => array(
                    'first-1' => 1,
                    'first-2' => 2,
                    'first-3' => 3,
                    'first-4' => 4,
                    'first-5' => 5,
                ),
                'second' => array(
                    'second-1' => 1,
                    'second-2' => 2,
                    'second-3' => 3,
                    'second-4' => 4,
                    'second-5' => 5,
                ));
write_ini_file($sampleData, './data.ini', true);

Good luck!

link|improve this answer
4  
After if (!fwrite($handle, $content)) {, the file handle should be closed. – Dave Jarvis Apr 11 '10 at 22:42
feedback

I can't vouch for how well it works, but there's some suggestions for implementing the opposite of parse_ini_file() (i.e. write_ini_file, which isn't a standard PHP function) on the documentation page for parse_ini_file.

You can use write_ini_file to send the values to a file, parse_ini_file to read them back in - modify the associative array that parse_ini_file returns, and then write the modified array back to the file with write_ini_file.

Does that work for you?

link|improve this answer
feedback

in this portion of code:

else { 
    foreach ($assoc_arr as $key=>$elem) { 
        if(is_array($elem)) 
        { 
            for($i=0;$i<count($elem);$i++) 
            { 
                $content .= $key2."[] = \"".$elem[$i]."\"\n"; 
            } 
        } 
        else if($elem=="") $content .= $key2." = \n"; 
        else $content .= $key2." = \"".$elem."\"\n"; 
    } 
} 

$key2 must be replaced by $key or you would find empty keys in your .ini

link|improve this answer
feedback

PEAR has two (unit tested) packages which do the task you are longing for:

  • Config_Lite - ideal if you only want .ini files
  • Config - reads also .php and .xml files

I'd rather use well tested code than writing my own.

link|improve this answer
+1 for tested/supported solution – Serge - appTranslator Nov 11 '11 at 20:05
feedback

I use this and it seems to work

function listINIRecursive($array_name, $indent = 0)
{
    global $str;
    foreach ($array_name as $k => $v)
    {
        if (is_array($v))
        {
            for ($i=0; $i < $indent * 5; $i++){ $str.= " "; }
            $str.= " [$k] \r\n";
            listINIRecursive($v, $indent + 1);
        }
            else
        {
            for ($i=0; $i < $indent * 5; $i++){ $str.= " "; }
            $str.= "$k = $v \r\n";
        }
    }
 }

it returns the text to write to an .ini file

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.