December 2010
Intermediate to advanced
363 pages
12h 21m
English
PHP doesn't have an SSL protocol module per se. Rather, SSL is implemented as a socket transport in PHP's streams model, and is therefore available to any function that uses streams, including file operations, sockets, and FTP. There is also SSL support in the imap, ldap, and curl modules.
Note For the features described in this section to work, you must be using PHP 4.3.0 or above, and PHP must have been compiled with the --with-openssl switch.
A stream is a PHP resource that can be read from or written to, or sometimes both. Streams were introduced in PHP 4.3 to provide ...