search
Homephp教程php手册php中的include和require的区别

php中的include和require的区别

主要关注红色标记语句即可。

The include (or require) statement takes all the text/code/markup that exists in the specified file and copies it into the file that uses the include statement.

Including files is very useful when you want to include the same PHP, HTML, or text on multiple pages of a website.


PHP include and require Statements

It is possible to insert the content of one PHP file into another PHP file (before the server executes it), with the include or require statement.

The include and require statements are identical, except upon failure:

    require will produce a fatal error (E_COMPILE_ERROR) and stop the scriptinclude will only produce a warning (E_WARNING) and the script will continue

    So, if you want the execution to go on and show users the output, even if the include file is missing, use the include statement. Otherwise, in case of FrameWork, CMS, or a complex PHP application coding, always use the require statement to include a key file to the flow of execution. This will help avoid compromising your application's security and integrity, just in-case one key file is accidentally missing.

    Including files saves a lot of work. This means that you can create a standard header, footer, or menu file for all your web pages. Then, when the header needs to be updated, you can only update the header include file.

    Syntax

    include 'filename';

    or

    require 'filename';

    PHP include Examples

    Example 1

    Assume we have a standard footer file called "footer.php", that looks like this:

    echo "

    Copyright © 1999-" . date("Y") . " W3Schools.com

    ";
    ?>

    To include the footer file in a page, use the include statement:

    Example




    Welcome to my home page!


    Some text.


    Some more text.






    Run example ?

    Example 2

    Assume we have a standard menu file called "menu.php":

    echo 'Home -
    HTML Tutorial -
    CSS Tutorial -
    JavaScript Tutorial -
    PHP Tutorial';
    ?>

    All pages in the Web site should use this menu file. Here is how it can be done (we are using a

    element so that the menu easily can be styled with CSS later):

    Example






    Welcome to my home page!


    Some text.


    Some more text.





    Run example ?

    Example 3

    Assume we have a file called "vars.php", with some variables defined:

    $color='red';
    $car='BMW';
    ?>

    Then, if we include the "vars.php" file, the variables can be used in the calling file:

    Example




    Welcome to my home page!


    echo "I have a $color $car.";
    ?>



    Run example ?

    PHP include vs. require

    The require statement is also used to include a file into the PHP code.

    However, there is one big difference between include and require; when a file is included with the include statement and PHP cannot find it, the script will continue to execute:

    Example




    Welcome to my home page!


    echo "I have a $color $car.";
    ?>



    Run example ?

    If we do the same example using the require statement, the echo statement will not be executed because the script execution dies after the require statement returned a fatal error:

    Example




    Welcome to my home page!


    echo "I have a $color $car.";
    ?>



    Run example ?
    Use require when the file is required by the application.

    Use include when the file is not required and application should continue when file is not found.
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software