Download the PHP package konstantin-kuklin/stream-library without Composer
On this page you can find all versions of the php package konstantin-kuklin/stream-library. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download konstantin-kuklin/stream-library
More information about konstantin-kuklin/stream-library
Files in konstantin-kuklin/stream-library
Package stream-library
Short Description Wrapper for stream functions
License MIT
Homepage https://github.com/KonstantinKuklin/StreamLibrary
Informations about the package stream-library
README
What is StreamLibrary?
StreamLibrary is a PHP wrapper via stream functions. It allows to work with streams with more comfortable environment.
Requirements
StreamLibrary is only supported on PHP 5 and up.
Installation
The best way to install StreamLibrary is with composer:
Documentation
First step to work is a creating object of Stream:
path - Path to file on system or ip address in network or hostname which we will work
protocol - String value of protocol type, can be Connection::PROTOCOL_TCP, Connection::PROTOCOL_UDP, Connection::PROTOCOL_UNIX
port - Integer value of port to connect. Not needs if protocol Connection::PROTOCOL_UNIX. Default value = 0.
driver - Object implements StreamDriverInterface. If your connection need to change transfer data you need to describe it logic with this object. Default value is null(mean data haven't been changed)
Get data from Stream
maxLength - The maximum bytes to read. Default value is -1 (read all the remaining buffer)
offset - Seek to the specified offset before reading. Default value is -1 (read without offset)
Send data to Stream
contents - can contain any string data