PHP - Parse ini file and access single values

前端 未结 2 1524
Happy的楠姐
Happy的楠姐 2020-12-16 07:57

In Python you can parse an .ini file and access the single values like this:

myini.ini

[STRINGS]
mystring = fooooo
valu         


        
2条回答
  •  醉酒成梦
    2020-12-16 08:18

    From the intermediate approach, to get match section, it needs to read any INI file from line to line, in this case you can use fgets function or stream_get_line function to read for each line until the section founded or end of file (not founded).

    Inside every line we can use preg_match (using regex pattern) that match with the actual section name been searched.

    The essential of this approach is to reduce memory usage meanwhile many concurrent request occurs at the same time, so in this case we use string object with any sufficient length as a buffer.

    Good luck Buddy.

提交回复
热议问题