Differences between include and require in php

Source: Internet
Author: User
: This article mainly introduces the differences between include and require in php. For more information about PHP tutorials, see. The following describes the differences between the include () and require () statements in PHP code:

1. different loading methods and error handling methods

  • The include () statement can be placed in the process control of the program. when the program is executed, the file is loaded in. When an error occurs (such as the file does not exist), only one warning is generated.

  • The require () statement is usually placed at the beginning of the program, and the program loads the file during execution. If an error occurs (if the file does not exist), the script is terminated.

2. php performance

  • The inlcude () statement reads and evaluates files every time it is executed.
  • The require () statement only processes files once (in fact, the file content replaces the require () statement.

3. include_once () and require_once ()

  • Include_once () includes and runs the file during the script execution period. if the file is included, it is not included again.

  • Require_once () checks whether the file has been loaded during script execution. If the file is not loaded again, for example, if a file defines a type, an error occurs when the file is loaded twice.

'). AddClass ('pre-numbering '). hide (); $ (this ). addClass ('Has-numbering '). parent (). append ($ numbering); for (I = 1; I <= lines; I ++) {$ numbering. append ($ ('
  • '). Text (I) ;}; $ numbering. fadeIn (1700) ;}) ;}; script

    The above introduces the differences between include and require in php, including the content, and hope to be helpful to friends who are interested in PHP tutorials.

    Related Article

    Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.