PHP:文件加载

Jun 20, 2016 pm 12:44 PM

PHP:文件加载


PHP文件加载综述:


    有4个文件加载的语法形式(注意,不是函数):include , include_once , require , require_once;

它们的本质是一样的,都是用于加载(引入/包含/载入)一个外部文件到当前php代码中来。


它们只在2个方面有细微区别:

    1:如果加载文件失败,则有不同的处理规则。include 与 require不同

    2:如果加载重复,则有不同的处理规则。XXX 与 XXX_once 不同

    3:它们都是语法结构,而非函数,使用形式可以有两种:

        include '文件路径';

        include('文件路径');


文件路径:


    不管是哪个载入语法结构,都涉及到文件路径问题。主要有3种情况:

1:相对路径

    就是以“./”,或“../”,开头的路径

        ./    表示当前网页文件的所在位置(文件夹/目录);

        ../    表示当前网页文件的所在位置的上一级位置(文件夹/目录);

        这种相对位置对一个网站中的所有内容(包括php,html,图片,css,js文件)都有效

2:绝对路径

    有两种绝对路径:

    本地绝对路径:

        window系统:c:/d1/d2/index.php

        unix系统:  /d1/d2/index.php

    网络绝对路径:http://www.abc.com/d1/d2/index.php

3:只有文件名(无路径,只给出文件名,不推荐)

    在php的include语法(其它3个也一样)中,如果只给出文件名,而没有给出路径,则此时有其内部找到该文件的规则,如下:

    首先在系统设置的include目录中查找

        在php.ini配置文件中,有:include_path设定

        

        可见默认无设定;该设定其实可以设定多个目录,其间用分号分开;系统会按顺序依次查找

    没找到,则在网页文件所在目录下找(当前工作目录)

    没找到,则在当前include命令所在文件的目录下找

    

文件载入过程:

    从include语句处退出php脚本模式(进入html代码模式)

    载入include语句所设定的文件中的代码,并执行之(如同在当前文件中一样)

    退出html模式重新进入php脚本模式,继续之后的代码


几个区别:

    include_once and include的区别:前者能保证不会被重复加载

    require and include 的区别:如果被包含文件不存在,即引用失败(出错)时,include警告并继续执行后面的代码,require会直接终止

    require_once and require 的区别:前者能保证不会被重复加载


return 关键字:

    以前,我们只在函数中出现return关键字,其作用是,结束函数,并可以返回数据;

        return; //单纯结束;

        return $x; //结束,并返回数据$x;

那么,被包含(载入)的文件中的return也具有同样的作用!

    默认情况下include载入成功返回1,载入失败返回false

    但被包含的文件中可以使用return语句返回数据值并终止该文件的后续部分的执行

    return返回的数据如同函数返回值一样可以进一步处理(比如赋值给其它变量)



Statement of this Website
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 ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Working with Flash Session Data in Laravel Working with Flash Session Data in Laravel Mar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

Build a React App With a Laravel Back End: Part 2, React Build a React App With a Laravel Back End: Part 2, React Mar 04, 2025 am 09:33 AM

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

cURL in PHP: How to Use the PHP cURL Extension in REST APIs cURL in PHP: How to Use the PHP cURL Extension in REST APIs Mar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel Tests Simplified HTTP Response Mocking in Laravel Tests Mar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon 12 Best PHP Chat Scripts on CodeCanyon Mar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Notifications in Laravel Notifications in Laravel Mar 04, 2025 am 09:22 AM

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov

Explain the concept of late static binding in PHP. Explain the concept of late static binding in PHP. Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP Logging: Best Practices for PHP Log Analysis PHP Logging: Best Practices for PHP Log Analysis Mar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

See all articles