Including Code
PHP provides two constructs to load code and HTML from another
module: require and include. Both load a file as the PHP script
runs, work in conditionals and loops, and complain if the file being
loaded cannot be found. The main difference is that attempting to require a nonexistent file is a fatal error,
while attempting to include such a file
produces a warning but does not stop script execution.
A common use of include is to
separate page-specific content from general site design. Common elements
such as headers and footers go in separate HTML files, and each page then
looks like:
<?phpinclude"header.html";?>content<?phpinclude"footer.html";?>
We use include because it allows
PHP to continue to process the page even if there’s an error in the site
design file(s). The require construct
is less forgiving and is more suited to loading code libraries, where the
page cannot be displayed if the libraries do not load. For example:
require"codelib.php";mysub();// defined in codelib.php
A marginally more efficient way to handle headers and footers is to load a single file and then call functions to generate the standardized site elements:
<?phprequire"design.php";header();?>content<?phpfooter();
If PHP cannot parse some part of a file added by include or require, a warning is printed and execution
continues. You can silence the warning by prepending the call with the
silence operator (@)—for example,
@include.
If the allow_url_fopen option is enabled through PHP’s ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access