ID:               9173
 Updated by:       [EMAIL PROTECTED]
 Reported By:      [EMAIL PROTECTED]
-Status:           Open
+Status:           Closed
 Bug Type:         Feature/Change Request
 Operating System: windowsNT
 PHP Version:      4.0.4pl1
 New Comment:

This bug has been fixed in CVS.

In case this was a PHP problem, snapshots of the sources are packaged
every three hours; this change will be in the next snapshot. You can
grab the snapshot at http://snaps.php.net/.
 
In case this was a documentation problem, the fix will show up soon at
http://www.php.net/manual/.

In case this was a PHP.net website problem, the change will show
up on the PHP.net site and on the mirror sites in short time.
 
Thank you for the report, and for helping us make PHP better.

PHP5-dev


Previous Comments:
------------------------------------------------------------------------

[2001-02-08 10:19:45] [EMAIL PROTECTED]

user feedback:
***************
getline in C++ does not limit the delim character with just a newline. 
if I wanted, I could do a getline on a string stream where the line
ends with "|".  example:

strstream sin;
sin.getline( szBuffer, nLength, '|' );

I would think this would be highly useful.  It is just a suggested
feature to add.
Also, with getline, it does not return the delim "|" character in the
szBuffer.
***************

ok, re-opened

------------------------------------------------------------------------

[2001-02-08 10:02:19] [EMAIL PROTECTED]

please, read the manual: fgets does what you want.

------------------------------------------------------------------------

[2001-02-08 09:47:41] [EMAIL PROTECTED]

Add a getline feature to the file and string routines.  is it possible
to incorporate the iostream style stdin/stdout in php? 

this is the getline i wrote:

function getline( $fp, $delim )
{
    $result = "";
    while( !feof( $fp ) )
    {
        $tmp = fgetc( $fp );
        if( $tmp == $delim )
            return $result;
       $result .= $tmp;
    }
    return $result;
}

------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=9173&edit=1

Reply via email to