


Try to use include instead of include_once. The reason is that include_once needs to query the loaded file list to confirm whether it exists, and then load it again.
It is true that this reason is correct, but what I want to talk about today is another reason.
We know that to determine whether a file is loaded, PHP needs to get the open_path of the file, which means, for example:
set_include_path("/tmp/:/tmp2/");
include_once("2.php");
?>
When PHP sees include_once "2.php", it does not know what the actual path of this file is, and it cannot judge whether it has been loaded from the loaded file list, so in include_once In the implementation, it will first try to parse the real path of the file (for ordinary files, this parsing is just like checking getcwd and the file path, so if it is a relative path, it will generally not succeed). If the parsing is successful, it will look for EG (include_files) , if it exists, it means it has been included and returns, otherwise open the file to get the opened_path of this file. For example, in the above example, this file exists in "/tmp2/2.php".
Then, get After getting this opened_path, PHP goes to the loaded file list to find out whether it is included. If it is not included, then compile directly, and there is no need to open the file anymore.
1. Try to parse the absolute path of the file, If the parsing is successful, check EG (included_files) and return if it exists. If it does not exist, continue
2. Open the file and get the open path of the file (opened path)
3. Use the opened path to search for EG (included_files) , whether it exists, return if it exists, continue if it does not exist
4. Compile file (compile_file)
In most cases, this is not a problem, but the problem lies when you use APC...
When using APC, APC hijacks the compile_file pointer to get the compilation result directly from the cache, avoiding opening the actual file and avoiding the system call for open.
However, when you use include_once in your code, PHP has already tried to open the file before compile_file, and then enters the compile file hijacked by APC. This will generate an additional open operation. To solve this problem, APC introduced include_once_override. When include_once_override is turned on, APC will hijack PHP's ZEND_INCLUDE_OR_EVAL opcode handler, determine the absolute path of the file through stat, and then if it is found that it has not been loaded, it will rewrite the opcode to include. , make a tricky solution.
But, unfortunately, as I said, APC’s include_once_override implementation has not been good, and there will be some undefined problems, such as:
set_include_path("/tmp");
function a($arg = array()) {
include_once("b.php");
}
a ();
a();
?>
Then, our b.php is placed in "/tmp/b.php" with the following content:
< ;?php
class B {}
?>
Then when apc.include_once_override is turned on, continuous access will get the following error:
Fatal error - include () : Cannot redeclare class
Excluding these technical factors, I have always believed that we should use include instead of include_once, because we can completely plan by ourselves, and a file will only be loaded once. You can also use the help of Automatic loading can do this.
If you use include_once, it can only prove that you have no confidence in your own code.
So, I suggest you not to use include_once

vue3+vite:src使用require动态导入图片报错和解决方法vue3+vite动态的导入多张图片vue3如果使用的是typescript开发,就会出现require引入图片报错,requireisnotdefined不能像使用vue2这样imgUrl:require(’…/assets/test.png’)导入,是因为typescript不支持require所以用import导入,下面介绍如何解决:使用awaitimport

命名管道是一种在操作系统中相对比较低级的进程通信方式,它是一种以文件为中介的进程通信方式。在Go语言中,通过os包提供了对命名管道的支持。在本文中,我们将介绍如何在Go中使用命名管道来实现进程间通信。一、命名管道的概念命名管道是一种特殊的文件,可以被多个进程同时访问。在Linux系统中,命名管道是一种特殊的文件类型,它们存在于文件系统的某个位置上,并且可以在

R55600搭配华硕哪个主板华硕ROGStrixB550-FGaming主板是一个非常出色的选择。它与Ryzen55600X处理器完美兼容,并提供出色的性能和功能。该主板具备可靠的供电系统,可支持超频,并提供丰富的扩展插槽和端口,满足日常使用和游戏需求。ROGStrixB550-FGaming还配备了高品质的音频解决方案、快速的网络连接和可靠的散热设计,确保系统保持高效稳定。此外,该主板还采用了华丽的ROG风格,配备了华丽的RGB照明效果,为您的计算机增添了视觉享受。总而言之,华硕ROGStri

在Go语言中,使用第三方库是非常方便的。许多优秀的第三方库和框架可以帮助我们快速地开发应用程序,同时也减少了我们自己编写代码的工作量。但是如何正确地使用第三方库,确保其稳定性和可靠性,是我们必须了解的一个问题。本文将从以下几个方面介绍如何使用第三方库,并结合具体例子进行讲解。一、第三方库的获取Go语言中获取第三方库有以下两种方式:1.使用goget命令首先

赛扬g4900和i36100哪个好当涉及到赛扬G4900和I36100这两款处理器时,毫无疑问,I36100的性能更胜一筹。赛扬处理器通常被视为低端处理器,主要用于廉价笔记本电脑。而I3处理器则主要用于高端处理器,其性能非常出色。不论是玩游戏还是观看视频,使用I3处理器都不会出现任何卡顿情况。因此,如果你有可能,尽量选择购买英特尔I系列处理器,特别是用于台式机,这样你就能畅享网络世界的乐趣了。赛扬G4900T性能怎么样从性能方面来看,奔腾G4900T在频率方面表现出色,相比之前的版本,CPU性能

当我们在使用 PHP 编写网页时,有时我们需要在当前 PHP 文件中包含其他 PHP 文件中的代码。这时,就可以使用 include 或 include_once 函数来实现文件包含。那么,include 和 include_once 到底有什么区别呢?

require用法:1、引入模块:在许多编程语言中,require用于引入外部模块或库,以便在程序中使用它们提供的功能。例如,在Ruby中,可以使用require来加载第三方库或模块;2、导入类或方法:在一些编程语言中,require用于导入特定的类或方法,以便在当前文件中使用它们;3、执行特定任务:在一些编程语言或框架中,require用于执行特定的任务或功能。

<p>Windows 系统上的 OneDrive 应用程序允许您将文件存储在高达 5 GB 的云上。OneDrive 应用程序中还有另一个功能,它允许用户选择一个选项,是将文件保留在系统空间上还是在线提供,而不占用您的系统存储空间。此功能称为按需文件。在这篇文章中,我们进一步探索了此功能,并解释了有关如何在 Windows 11 电脑上的 OneDrive 中按需使用文件的各种选项。</p><h2>如何使用 On


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

Atom editor mac version download
The most popular open source editor

Dreamweaver CS6
Visual web development tools

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Zend Studio 13.0.1
Powerful PHP integrated development environment
