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
 [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: Wed Apr 24 20:01:32 2024 UTC