Table of Contents
回复内容:
Home Backend Development PHP Tutorial codeigniter - php CI框架的core/common.php中一些函数的疑问?

codeigniter - php CI框架的core/common.php中一些函数的疑问?

Jun 06, 2016 pm 08:40 PM
codeigniter php

<code>if ( ! function_exists('is_php'))
{
    function is_php($version = '5.0.0')
    {
        static $_is_php;
        $version = (string)$version;

        if ( ! isset($_is_php[$version]))
        {
            $_is_php[$version] = (version_compare(PHP_VERSION, $version) </code>
Copy after login
Copy after login

所有的函数都存在

<code>if ( ! function_exists('is_php'))
{

}
</code>
Copy after login
Copy after login

这样的结构,这样做是否显得有点多余。

回复内容:

<code>if ( ! function_exists('is_php'))
{
    function is_php($version = '5.0.0')
    {
        static $_is_php;
        $version = (string)$version;

        if ( ! isset($_is_php[$version]))
        {
            $_is_php[$version] = (version_compare(PHP_VERSION, $version) </code>
Copy after login
Copy after login

所有的函数都存在

<code>if ( ! function_exists('is_php'))
{

}
</code>
Copy after login
Copy after login

这样的结构,这样做是否显得有点多余。

对框架来说是不多余的.有可能使用者会在加载这个文件之前加载自己的function文件.

当然不是,这样是避免框架自带的函数和开发者的函数冲突。

方便扩展。

框架首先加载开发者的函数,然后加载系统函数。

开发者只需要些一个同名函数,就可以覆盖系统函数。

这也是 CI 的一大卖点。

可能

  1. 当多次引入这个文件时,防止发生函数重复声明错误
  2. 兼容没的提供内置函数的PHP版本

给出的代码符合第一种情况

如果你觉得这是一个问题的话,其实可以通过命名空间来解决

多个php版本功能兼容、避免框架自带的函数和开发者的函数冲突,原因有二。

1,ci是一个历史很悠(落)久(后)的框架,在ci起来的那些年,php那里还没有命名空间,很多新功能特性不支持
2,我觉得ci这样的设计初衷里,肯定不会是为了能让用户重写这些函数,因为要实现继承和重写,肯定还是类方便。

1.预先实现一些php没有实现但是将来可能实现的函数,避免冲突
2.解决重复加载问题。

不是多余的,原因如下:
1.向后兼容,避免后面的php版本实现了同名函数
2.方便开发者扩展。看看CI的文档就知道,开发者如果需要重写框架提供的函数,只需要把函数名写成一样的就可以了。
CI不是一个完全面向对象的框架,保留了很多公共函数,更没有命名空间的概念,所以要用这种方法来实现框架可扩展。

如果想删掉这些的话,
可以用命名空间
否则会起命名重复冲突的

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)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

See all articles