20.05.2012, 10:39
I already have a file writed
I wanna to re-write c to 999
The problem is not re-write the 'c' is write another one on the first line
PHP код:
a = 1
b = Branza
c = -1
d = 0xFFFFFFFF
PHP код:
new INI:File = INI_Open(_szOldPathFile);
INI_WriteInt(File,"c", 999);
INI_Close(File);
PHP код:
c = 999
a = 1
b = Branza
c = -1
d = 0xFFFFFFFF