Ignore:
Timestamp:
2006/11/13 14:52:55 (20 years ago)
Author:
kakinaka
Message:

blank

File:
1 edited

Legend:

Unmodified
Added
Removed
  • temp/trunk/data/module/Net/Socket.php

    r8269 r8270  
    449449        $timeout = time() + $this->timeout; 
    450450         
     451         
    451452        $fp = $this->fp; 
    452453        while (($c =@fgets($fp, $this->lineLength))!==false && (!$this->timeout || time() < $timeout)) { 
    453454            $line .= $c; 
    454455            if (substr($line, -1) == "\n") { 
     456                 
    455457                return rtrim($line, "\r\n"); 
    456458            } 
    457             sfprintr("Socket"); 
    458             sfprintr($line); 
    459         } 
    460          
     459        } 
    461460         
    462461        /* 
Note: See TracChangeset for help on using the changeset viewer.