PHP:文件加载
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返回的数据如同函数返回值一样可以进一步处理(比如赋值给其它变量)

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

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-

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

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.

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' =>

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

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

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 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
