|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2014-11-20 17:16 UTC] requinix@php.net
[2018-08-20 21:56 UTC] cmb@php.net
-Package: Filter related
+Package: Filesystem function related
[2020-10-07 16:03 UTC] cmb@php.net
-Status: Open
+Status: Not a bug
-Assigned To:
+Assigned To: cmb
[2020-10-07 16:03 UTC] cmb@php.net
[2021-03-03 13:40 UTC] krzysiek at example dot com
[2021-03-03 13:57 UTC] cmb@php.net
-Status: Not a bug
+Status: Re-Opened
-Assigned To: cmb
+Assigned To:
[2021-03-03 13:57 UTC] cmb@php.net
[2021-03-03 17:26 UTC] krzysiek at example dot com
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 09 08:00:01 2025 UTC |
Description: ------------ If conf file have something like on= Then it throws warning php: PHP Warning: syntax error, unexpected BOOL_TRUE in test.conf on line 4#012 in /tmp/test.php on line 2 Test script: --------------- $ cat test.conf [data] test=test abc=abc on=test $ cat test.php <?php $conf=parse_ini_file("test.conf",true); print_r($conf); ?> $php test.php Not printing anything.But getting this warning php: PHP Warning: syntax error, unexpected BOOL_TRUE in test.conf on line 4#012 in /tmp/test.php on line 2