Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Protocol

A protocol is a scheme part of a URL, with an associated wrapper.

In a URL like ftp://www.site.com/file.txt, the protocol is ftp, and relates to the FTP protocol. It is also a predefined PHP wrapper.

<?php

$html = file_get_content('http://www.php.net/');

?>

Documentation

See Also