Parse error: Syntax error, unexpected end of file in my PHP code

后端 未结 16 1668
孤城傲影
孤城傲影 2020-11-22 05:27

I got an error:

Parse error: syntax error, unexpected end of file in the line

With this code:


    

        
16条回答
  •  名媛妹妹
    2020-11-22 05:35

    If your using parse_ini_file($file) or a routine is rading an .ini file, check if you data is quoted in the ini file. Unquoted data will cause this error. Ex; data1=test will cause the error, data1="test" will not.

提交回复
热议问题