Need to parse ini file to extract values

后端 未结 3 1192
情歌与酒
情歌与酒 2021-01-25 03:58

I have a .ini file with contents of...

[template]
color1 = 000000
color2 = ff6100
color3 = ff6100
color4 = 000000

And a file with contents belo

3条回答
  •  不要未来只要你来
    2021-01-25 04:31

    Use parse_ini:

    $colors = parse_ini($path_to_ini, true);
    
    if(array_key_exists($myTheme, $colors)) {
        $myColor = $colors[$myTheme]['color' . $spot];
    }
    

    You don't need to compare $spot for each color - you can build the array key to get the value.

提交回复
热议问题