PHP Including and Requiring Files

PHP Including and Requiring Files

As you progress in your use of PHP programming, you are likely to start building a library of functions that you think you will need again. You’ll also probably start using libraries created by other programmers. There’s no need to copy and paste these functions into your code. You can save them in separate files and use commands to pull them in. There are two types of commands to perform this action: PHP Including and Requiring Files.

The include Statement

Using include, you can tell PHP to fetch a particular file and load all its contents. It’s as if you pasted the included file into the current file at the insertion point. Example 5-6 shows how you would include a file called library.php.

Example 5-6. Including a PHP file

<?php
include "library.php";
// Your code goes here
?>

Using include_once

Each time you issue the include directive, it includes the requested file again, even if you’ve already inserted it. For instance, suppose that library.php contains a lot of useful functions, so you include it in your file, but also include another library that includes library.php. Through nesting, you’ve inadvertently included library.php twice. This will produce error messages because you’re trying to define the same constant or function multiple times. So you should use include_once instead (see Example 5-7).

Example 5-7. Including a PHP file only once

<?php
include_once "library.php";
// Your code goes here
?>

Then, whenever another include or include_once is encountered, if it has already been executed, it will be completely ignored. To determine whether the file has already been executed, the absolute file path is matched after all relative paths are resolved and the file is found in your include path.

In general, it’s probably best to stick with include_once and ignore
the basic include statement. That way, you will never have the prob‐
lem of files being included multiple times.

Using require and require_once

A potential problem with include and include_once is that PHP will only attempt to include the requested file. Program execution continues even if the file is not found. When it is absolutely essential to include a file, require it. For the same reasons I gave for using include_once, I recommend that you generally stick with require_once whenever you need to require a file (see Example 5-8).

Example 5-8. Requiring a PHP file only once

<?php
require_once "library.php";
// Your code goes here
?>

 

what is the difference between include() and require() function in PHP?

Ans:  click here to view the answer.

Loading