Home php教程 php手册 如何避免使用php的require_once

如何避免使用php的require_once

Jun 21, 2016 am 08:52 AM
autoload defined once require

  我们知道,在php中使用require_once/include_once虽然方便,但是代价昂贵,据测试数据来看,require_once比require慢3-4倍,所以在php开发中,我们应该尽量使用require/include。

  列一下俺常用的避免require/include的方法。

  使用__autoload

  php5可以使用__autoload来避免require,用的好的话,代码里头甚至看不到几个require,实在是安逸啊。测试结果表明,使用__autoload之后的new Foo; 比require_once ‘foo.php’; new Foo; 大概要快3倍左右。

  补充:为了避免autoload冲突,可以考虑使用spl_autoload_register(PHP 5 >= 5.1.2)来改变魔术函数__autoload的行为。

  使用defined检测是否载入过

  在代码开头使用defined检测是否定义过对应的常量,如果有的话,直接return。

  

  if(!defined('_MYCLASS_'))

  return;

  define('_MYCLASS_', 1);

  class MyClass { ... }

  ?>

  测试了一下,defined的性能也不是太好…

  require前检查

  用class_exists或者function_exists检查一下,确认没有载入过再出手,至少比require_once能快上3倍。php4也可以用上。

  class_exists('myClass') or require('/path/to/myClass.class.php');



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 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
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)

vue3+vite: How to solve the error when using require to dynamically import images in src vue3+vite: How to solve the error when using require to dynamically import images in src May 21, 2023 pm 03:16 PM

vue3+vite:src uses require to dynamically import images and error reports and solutions. vue3+vite dynamically imports multiple images. If vue3 is using typescript development, require will introduce image errors. requireisnotdefined cannot be used like vue2 such as imgUrl:require(' .../assets/test.png') is imported because typescript does not support require, so import is used. Here is how to solve it: use awaitimport

What are the uses of require? What are the uses of require? Nov 27, 2023 am 10:03 AM

Usage of require: 1. Introduce modules: In many programming languages, require is used to introduce external modules or libraries so that the functions they provide can be used in the program. For example, in Ruby, you can use require to load third-party libraries or modules; 2. Import classes or methods: In some programming languages, require is used to import specific classes or methods so that they can be used in the current file; 3. Perform specific tasks: In some programming languages ​​or frameworks, require is used to perform specific tasks or functions.

Steps to solve the fatal error in the php header: require(): Failed opening required 'data/tdk.php' (include_path='.;C:\php\pear') Steps to solve the fatal error in the php header: require(): Failed opening required 'data/tdk.php' (include_path='.;C:\php\pear') Nov 27, 2023 pm 12:51 PM

Steps to resolve fatalerror:require():Failedopeningrequired'data/tdk.php'(include_path='.;C:phppear') in PHP header When developing websites or applications using PHP, we often encounter various errors . One of the common errors is "fatalerror:require():Failed

A brief analysis of the solutions to error reports in PHP defined judgments A brief analysis of the solutions to error reports in PHP defined judgments Mar 23, 2023 pm 04:35 PM

PHP is a commonly used server-side language and is the development language for many large websites. In the PHP development process, we often use the defined() function to determine whether a constant is defined. However, sometimes when we use the defined() function, we will encounter some error prompts. This article will lead you to solve the problem of PHP defined judgment error reporting.

Steps to solve fatal error in php header: require(): Failed opening required 'data/tdk.php' Steps to solve fatal error in php header: require(): Failed opening required 'data/tdk.php' Nov 27, 2023 am 10:41 AM

Steps to resolve FatalError:require():Failedopeningrequired'data/tdk.php' in PHP header When developing and maintaining PHP websites, we often encounter various errors and exceptions. One of the common errors is "FatalError:require():Failedopeningrequired'data/tdk.php'".

How to use event modifier .once in Vue to achieve an event that only fires once How to use event modifier .once in Vue to achieve an event that only fires once Jun 11, 2023 pm 07:58 PM

Vue is a popular front-end framework that provides many convenient features, including an event system. Vue's event system allows developers to easily bind events and listen for events. Event modifiers are a feature in the Vue event system that are used to modify the behavior of events. In this article, we will introduce how to use the event modifier .once in Vue to achieve an event that is triggered only once. What are event modifiers? Event modifiers are a feature in the Vue event system that are used to modify the behavior of events. Vue provides some event modifiers

Detailed explanation of the role and usage of the require keyword in PHP Detailed explanation of the role and usage of the require keyword in PHP Jun 28, 2023 pm 11:31 PM

Detailed explanation of the role and usage of the require keyword in PHP In PHP development, require is a very commonly used keyword. Its function is to include the specified file for use by the current script. This article will explain in detail the function and use of the require keyword. 1. The role of the require keyword The require keyword can include the contents of a file into the current script. It is usually used to include some necessary external files, such as library files, configuration files, etc. Use req

How do autoloading and namespaces work in Composer? How do autoloading and namespaces work in Composer? Jun 04, 2024 pm 09:03 PM

How autoloading and namespaces work in Composer: Autoloading: Composer takes advantage of the autoloading feature to automatically load classes when needed, eliminating the tediousness of manual calls. Namespace: Namespace organizes code and avoids conflicts with the same class name. Composer supports namespaces through the PSR-4 standard, which specifies the mapping between namespaces and directories. Practical case: When using a third-party library, configure the require and autoload parts in composer.json, and specify the library name and mapping rules. This allows us to use classes from the library directly without having to manually load files.

See all articles