Ferreteria/v0.6/clade/IO/Aspect/Connx/Buffer/@fx/RemoveBytes
Jump to navigation
Jump to search
|
fx:
RemoveBytes() |
Code
#
public function RemoveBytes() : string {
$this->ErrorIfShut('read from');
$sOut = $this->sBuff;
$nLen = strlen($sOut);
$this->nSpent += $nLen;
$this->sBuff = '';
return $sOut;
}