php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #75029 Empty string should not return FALSE
Submitted: 2017-08-03 12:12 UTC Modified: 2018-11-13 03:03 UTC
From: Raffael dot Comi at elementare-teilchen dot de Assigned: bd808 (profile)
Status: Closed Package: yaml (PECL)
PHP Version: 7.1.7 OS: debian stretch
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 this is not your bug, you can add a comment by following this link.
If this is your bug, but you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: Raffael dot Comi at elementare-teilchen dot de
New email:
PHP Version: OS:

 

 [2017-08-03 12:12 UTC] Raffael dot Comi at elementare-teilchen dot de
Description:
------------
I'm using version 2.0.0 of php-yaml.

According to http://www.yaml.org/spec/current.html#id2527268, empty streams are valid, they don't have to include a document.
Take the example provided in the spec, where the stream only consists of comments.

Test script:
---------------
yaml_parse('');

yaml_parse('#Only comment');

Expected result:
----------------
array(0) {
}

or

string(0) ""

or even

bool(true)

Actual result:
--------------
PHP Warning:  yaml_parse(): end of stream reached without finding document 0

bool(false)

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2018-11-13 01:22 UTC] bd808@php.net
-Assigned To: +Assigned To: bd808
 [2018-11-13 03:03 UTC] bd808@php.net
-Status: Assigned +Status: Closed
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Apr 23 11:01:33 2024 UTC