Syntax error using parse_ini_file() when file's value's contain exclamation points and equal signs Syntax error using parse_ini_file() when file's value's contain exclamation points and equal signs php php

Syntax error using parse_ini_file() when file's value's contain exclamation points and equal signs


You should put your values between double quotes this way:

line1 = ascline2 = "/*.blog ul li {margin-bottom:0 !important;}*/"line3 = trueline4 = "<meta name=\"google-site-verification\" content=\"\" />"

Hope this helps


You don't need to change your ini files you can just add the INI_SCANNER_RAW option.

parse_ini_file('your.ini', true, INI_SCANNER_RAW);

will do the job.