php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #45115 Problem with fgets and \ followed by n
Submitted: 2008-05-28 12:44 UTC Modified: 2008-07-13 15:10 UTC
From: gabriel dot magniez at steria dot com Assigned:
Status: Not a bug Package: Streams related
PHP Version: 5.2.6 OS: Linux (Debian)
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: gabriel dot magniez at steria dot com
New email:
PHP Version: OS:

 

 [2008-05-28 12:44 UTC] gabriel dot magniez at steria dot com
Description:
------------
When I read a stream line by line with the function fgets, this function seems to interprete the two characters "\" followed by "n" as the "\n" (end of line) character.
My problem is that I attemp to read a shell script which contains these two characters but I would like that fgets don't transform these into the control character "\n".

Reproduce code:
---------------
$str = fgets($this->stream)

Expected result:
----------------
Only on line (ex: echo "abc\ndef")

Actual result:
--------------
Two lines:
echo "abc
def"


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2008-07-13 15:10 UTC] jani@php.net
Don't use fgets() then, use fread().
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 25 23:01:29 2024 UTC