PHP Класс Horde_Smtp_Connection, horde

NOTE: This class is NOT intended to be accessed outside of the package. There is NO guarantees that the API of this class will not change across versions.
Автор: Michael Slusarz ([email protected])
Наследование: extends Horde\Socket\Client
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
read ( integer $size = null ) : string Read data from incoming stream.
write ( mixed $data, mixed $size = null ) Writes data to the output stream.

Защищенные методы

Метод Описание
_write ( string $data ) Writes data to the output stream.

Описание методов

_write() защищенный Метод

Writes data to the output stream.
protected _write ( string $data )
$data string String data.

read() публичный Метод

Read data from incoming stream.
public read ( integer $size = null ) : string
$size integer UNUSED: The number of bytes to read from the socket.
Результат string Line of data.

write() публичный Метод

Writes data to the output stream.
public write ( mixed $data, mixed $size = null )
$data mixed String data (or array of string data), or a resource.
$size mixed If set, the maximum number of octets to send.