11. Communicating with Others

Most of the previously discussed phrases worked within the ecosystem of the PHP script and the Web server in use. However, because some phrases can also be understood by others, this chapter covers some examples of this type. You can connect to remote servers in a variety of ways.

Connecting with HTTP Servers

<xmp> <?php   echo file_get_contents('http://www.php.net/'); ?> </xmp>

Reading in an HTTP Resource (http-file.php)

Hypertext Transfer Protocol (HTTP) is probably the protocol most often used from PHP to connect with others (apart from various database protocols). Starting with PHP 4.3, it is really easy to connect to such data sources because PHP’s stream support was vastly improved in that version. (Of course, ...

Get PHP and MySQL™ Phrasebook now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.