Advanced Web Server Manager
Complete File Manager & Terminal - Standalone Version
By Sid Gifari | Gifari Industries
Current path:
/
/
home
/
qtdcvxyp
/
public_html
/
sms
/
backend
/
plugins
/
ckeditor
/
plugins
/
ckeditor_wiris
/
integration
/
lib
/
haxe
/
io
✏️
Editing: BytesBuffer.class.php
<?php class haxe_io_BytesBuffer { public function __construct() { if(!php_Boot::$skip_constructor) { $this->b = ""; }} public function getBytes() { $bytes = new haxe_io_Bytes(strlen($this->b), $this->b); $this->b = null; return $bytes; } public function addBytes($src, $pos, $len) { if($pos < 0 || $len < 0 || $pos + $len > $src->length) { throw new HException(haxe_io_Error::$OutsideBounds); } $this->b .= substr($src->b, $pos, $len); } public function add($src) { $this->b .= $src->b; } public function addByte($byte) { $this->b .= chr($byte); } public $b; public function __call($m, $a) { if(isset($this->$m) && is_callable($this->$m)) return call_user_func_array($this->$m, $a); else if(isset($this->�dynamics[$m]) && is_callable($this->�dynamics[$m])) return call_user_func_array($this->�dynamics[$m], $a); else if('toString' == $m) return $this->__toString(); else throw new HException('Unable to call �'.$m.'�'); } function __toString() { return 'haxe.io.BytesBuffer'; } }
💾 Save Changes
❌ Cancel