你可以使用此函数将值(数字)写入 ini 数据文件。Ini 文件由 节(sections) 组成,然后每个节由 键 - 值 对(key - value pairs)组成。所以典型的 ini 文件看起来像这样:
ini_write_real(section, key, value);
参数 | 描述 |
---|---|
section | 写入 .ini 的键所在的节。 |
key | .ini 要写入的键。 |
值 | 写入的实数值。 |
N/A(无返回值)
score = 1000;
ini_open("savedata.ini");
ini_write_real("save1", "Score", score );
score2 = ini_read_real("save1", "Score", 0 );
ini_close();
This will set score to 1000, then open "savedata.ini" and write this value to "save1" > "Score". Then, it will set score2 to the real value under "save1" > "score" in it, 1000, and close the .ini again. 如果没有找到此值,则 score2 最终会设置为 0。