Source code raw phps
<?php
abstract class Link {
abstract public function connect($host, $port);
abstract public function read($length = 2048);
abstract public function write($content);
abstract public function isValid();
abstract public function eof();
static protected $_status = self::S_NOT_CONNECTED;
const S_CONNECTED = 0;
const S_NOT_CONNECTED = 1;
const S_ERROR = 2;
}
Comments
There is currently no comment here.