php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #54183 parse_ini_string('prenom = LAI NO') syntax error, unexpected BOOL_FALSE
Submitted: 2011-03-07 16:41 UTC Modified: 2011-03-07 18:16 UTC
From: desplats at saficard dot com Assigned:
Status: Not a bug Package: Strings related
PHP Version: 5.3.5 OS:
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: desplats at saficard dot com
New email:
PHP Version: OS:

 

 [2011-03-07 16:41 UTC] desplats at saficard dot com
Description:
------------
When using parse_ini_string or parse_ini_file, if the value has a substring as "NO" it causes a syntax error, unexpected BOOL_FALSE.

Test script:
---------------
<?php 
echo parse_ini_string('prenom = LAI NO');
?>


Expected result:
----------------
Array

Actual result:
--------------
PHP Warning:  syntax error, unexpected BOOL_FALSE in Unknown on line 1

Patches

webAppError_503_Comentario (last revision 2021-10-05 15:11 UTC by erptellez at gmail dot com)

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2011-03-07 18:15 UTC] tomas dot brastavicius at quantum dot lt
Excerpt from http://php.net/manual/en/function.parse-ini-file.php
[If a value in the ini file contains any non-alphanumeric characters it needs to be enclosed in double-quotes (")]

Code
<?php 
echo parse_ini_string('prenom = "LAI NO"');
?>
works fine.
 [2011-03-07 18:16 UTC] felipe@php.net
-Status: Open +Status: Bogus
 [2011-03-07 18:16 UTC] felipe@php.net
Thank you for taking the time to write to us, but this is not
a bug. Please double-check the documentation available at
http://www.php.net/manual/ and the instructions on how to report
a bug at http://bugs.php.net/how-to-report.php


 [2021-10-05 15:11 UTC] erptellez at gmail dot com
The following patch has been added/updated:

Patch Name: webAppError_503_Comentario
Revision:   1633446700
URL:        https://bugs.php.net/patch-display.php?bug=54183&patch=webAppError_503_Comentario&revision=1633446700
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sat Dec 21 15:01:29 2024 UTC