创建ini文件,用PHP写入值
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了创建ini文件,用PHP写入值相关的知识,希望对你有一定的参考价值。
我找不到一种方法可以轻松地创建一个新文件,将其视为ini文件(不是php.ini或simiilar ......为每个用户提供单独的ini文件),并使用PHP创建/删除值。 PHP似乎没有提供创建ini文件和读/写/删除值的简单方法。到目前为止,它只是“读取” - 没有关于创建条目或操纵键/值。
答案
从PHP文档的注释中找到以下代码片段:
function write_ini_file($assoc_arr, $path, $has_sections=FALSE) {
$content = "";
if ($has_sections) {
foreach ($assoc_arr as $key=>$elem) {
$content .= "[".$key."]
";
foreach ($elem as $key2=>$elem2) {
if(is_array($elem2))
{
for($i=0;$i<count($elem2);$i++)
{
$content .= $key2."[] = "".$elem2[$i].""
";
}
}
else if($elem2=="") $content .= $key2." =
";
else $content .= $key2." = "".$elem2.""
";
}
}
}
else {
foreach ($assoc_arr as $key=>$elem) {
if(is_array($elem))
{
for($i=0;$i<count($elem);$i++)
{
$content .= $key."[] = "".$elem[$i].""
";
}
}
else if($elem=="") $content .= $key." =
";
else $content .= $key." = "".$elem.""
";
}
}
if (!$handle = fopen($path, 'w')) {
return false;
}
$success = fwrite($handle, $content);
fclose($handle);
return $success;
}
用法:
$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);
祝好运!
另一答案
PEAR有两个(经过单元测试的)软件包,可以完成您渴望的任务:
- Config_Lite - 如果你只想要
.ini
文件的理想选择 - Config - 读取
.php
和.xml
文件
我宁愿使用经过良好测试的代码而不是编写自己的代码。
另一答案
我不能保证它有多好用,但是有一些建议可以在parse_ini_file()
的文档页面上实现write_ini_file
(即parse_ini_file
,它不是标准的PHP函数)的反面。
您可以使用write_ini_file
将值发送到文件,parse_ini_file
将其读回 - 修改parse_ini_file
返回的关联数组,然后使用write_ini_file
将修改后的数组写回文件。
那对你有用吗?
另一答案
在这部分代码中:
else {
foreach ($assoc_arr as $key=>$elem) {
if(is_array($elem))
{
for($i=0;$i<count($elem);$i++)
{
$content .= $key2."[] = "".$elem[$i].""
";
}
}
else if($elem=="") $content .= $key2." =
";
else $content .= $key2." = "".$elem.""
";
}
}
$ key2必须用$ key替换,否则你会在.ini中找到空键
另一答案
根据上面的答案,我写了这个可能有用的课程。对于PHP 5.3,但可以很容易地适应以前的版本。
class Utils
{
public static function write_ini_file($assoc_arr, $path, $has_sections)
{
$content = '';
if (!$handle = fopen($path, 'w'))
return FALSE;
self::_write_ini_file_r($content, $assoc_arr, $has_sections);
if (!fwrite($handle, $content))
return FALSE;
fclose($handle);
return TRUE;
}
private static function _write_ini_file_r(&$content, $assoc_arr, $has_sections)
{
foreach ($assoc_arr as $key => $val) {
if (is_array($val)) {
if($has_sections) {
$content .= "[$key]
";
self::_write_ini_file_r(&$content, $val, false);
} else {
foreach($val as $iKey => $iVal) {
if (is_int($iKey))
$content .= $key ."[] = $iVal
";
else
$content .= $key ."[$iKey] = $iVal
";
}
}
} else {
$content .= "$key = $val
";
}
}
}
}
另一答案
我用它,它似乎工作
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]
";
listINIRecursive($v, $indent + 1);
}
else
{
for ($i=0; $i < $indent * 5; $i++){ $str.= " "; }
$str.= "$k = $v
";
}
}
}
它返回要写入.ini文件的文本
以上是关于创建ini文件,用PHP写入值的主要内容,如果未能解决你的问题,请参考以下文章