PHP has built in support for various types of network streams, such as HTTP and TCP sockets. One problem that arises with them is the fact that a single fread/fwrite call might not read/write all the data you intended, regardless of whether you're in blocking mode or not. While the PHP manual offers a workaround in the form of a loop with a few variables, using it every single time you want to read/write can be tedious.
This package abstracts this away, so that when you want to get exactly N amount of bytes, you can be sure the upper levels of your app will be dealing with N bytes. Oh, and the functionality is nicely wrapped in an object (but that's just the icing on the cake).
Release Notes - 1.0.0a3
Added locking support at TcpClient, particularly for persistent connections. Also some doc fixes.
Installation
| Status: | 1.0.0a3 alpha, released on August 3, 2012 |
|---|---|
| License: | LGPL License 2.1 |
| Maintained: | yes |
Browse Files
26 files in 10 directories.Dependencies for PEAR2_Net_Transmitter
- PHP ≥ 5.3.0
