编辑和读取 PHP INI 文件中的值
搜索读取和编辑 PHP INI 文件的功能而不是搜索可能会令人沮丧在文档中找到它。以下是完成这些任务的方法:
读取值
要读取“lu_link”或“footerbg”的值,请使用 parse_ini_file() 函数:
<code class="php">$ini_array = parse_ini_file("sample.ini"); echo $ini_array['lu_link']; // Output: #F8F8F8 echo $ini_array['footerbg']; // Output: #F8F8F8</code>
写入值
要更新值,您可以使用 write_php_ini() 函数:
<code class="php">function write_php_ini($array, $file) { $res = []; foreach ($array as $key => $val) { if (is_array($val)) { $res[] = "[$key]"; foreach ($val as $skey => $sval) { $res[] = "$skey = " . (is_numeric($sval) ? $sval : '"'.$sval.'"'); } } else { $res[] = "$key = " . (is_numeric($val) ? $val : '"'.$val.'"'); } } safefilerewrite($file, implode("\r\n", $res)); } function safefilerewrite($fileName, $dataToSave) { if ($fp = fopen($fileName, 'w')) { $startTime = microtime(TRUE); do { $canWrite = flock($fp, LOCK_EX); // Wait to avoid collision and CPU load if (!$canWrite) usleep(round(rand(0, 100) * 1000)); } while ((!$canWrite) AND ((microtime(TRUE) - $startTime <5))); // Save data if the file was locked if ($canWrite) { fwrite($fp, $dataToSave); flock($fp, LOCK_UN); } fclose($fp); } }</code>
示例用法:
<code class="php">$ini_array['lu_link'] = '#FFFFFF'; write_php_ini($ini_array, "sample.ini");</code>
这些函数提供了一种访问和修改 PHP INI 文件中的值的简单方法。
以上是如何读取和编辑 PHP INI 文件中的值?的详细内容。更多信息请关注PHP中文网其他相关文章!