Table of Contents
1. define容易产生意想不到的错误
2. 如何判断PHP常量是否被定义?判断方法易写错
3. 执行效率低
类名和函数名相同时的作用
用PHP EOL来替换/r/n进行换行
Home Backend Development PHP Tutorial Several things to note when using PHP constants_PHP Tutorial

Several things to note when using PHP constants_PHP Tutorial

Jul 13, 2016 am 10:33 AM
php kernel constant

为什么要谨慎使用PHP中的常量?

Zend Framework文档中写道:常量包含数字字母字符和下划线,数字允许作为常量名。 常量名的所有字母必须大写。类常量必须通过 "const" 定义为类的成员,强烈不鼓励使用 "define" 定义的全局常量。

作为PHP的官方框架,为什么会有这样的要求?

让我们一起分析一下吧。

1. define容易产生意想不到的错误

PHP常量是定义后就不能修改和再次赋值。但是如果再次赋值会怎么样?

<?php
  define('C', 12345);
  define('C', 123);
?>
Copy after login

这段代码会报个notice错误。带来的后果是:在你定义之前,其它人要是定义了同名的常量,你可能真的不知道里面究竟是什么值。

2. 如何判断PHP常量是否被定义?判断方法易写错

<?php
  define('C', 12345);
  // 错误方法1,经常犯
  if (isset(C)){……}
  // 错误方法2,经常犯
 if (defined(C)){……}
  // 正确方法
  if (defined('C')){……}
?>
Copy after login

3. 执行效率低

<?php
    define('FORUM_THEME',$forum['theme']); 
    $this->display('/'.FORUM_THEME.'@Public:login');  
    //  系统会从整个执行流程中查找FORUM_THEME
?>
Copy after login

因为php处理常量的时候要进行多次查找,所以效率低。

总结:PHP常量的问题,在于PHP处理常量的方法过于宽松导致的,如果能够严格一些,就会避免很多的问题。在实际过程,能用变量就不要用常量,因为变量的效率高使用更加方便。

因此若非要使用常量或者类变量,可使用以下方法:

<?php
  class foo {
    const WEBSITE = "www.zhuyinghao.com";
    protected $_forum_theme;
    function name()
    {
        echo WEBSITE;
        $this->_forum_theme = $forum['theme'];
    }
    function displace() 
    {
       echo $this->_forum_theme;
    }
  }
?>
Copy after login

类名和函数名相同时的作用

在PHP 4中,类的构造函数需要和类名相同,子类的构造函数名与子类名相同,在子类里父类的构造函数不会自动执行。要在子类里执行父类的构造函数,必须执行类似以下语句:

$this->[父类的构造函数名()]

在 PHP 5.0 以上版本里,统一使用construct()作为构造函数,但仍兼容了 4.0 版本的构造函数的定义规则。如果同时定义了4.0的构造函数和 construct()函数,则construct() 函数优先。

用PHP EOL来替换/r/n进行换行

写程序时会经常用到换行,用PHP内置常量PHP_EOL来进行换行。

一个小小的换行,在不同的平台有着不同的实现。在unix世界换行就用\n来代替,但是windows为了体现他的不同,就用\r\n,更有意思的是在mac中用\r。因此unix系列用 \n,windows系列用 \r\n,mac用 \r。

因此系统会根据平台系统的不同,转换成不同的换行。如果要在浏览器中换行,就要使用PHP_EOL变量进行换行

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/752544.htmlTechArticle为什么要谨慎使用PHP中的常量? Zend Framework文档中写道:常量包含数字字母字符和下划线,数字允许作为常量名。 常量名的所有字母必须大...
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
4 weeks 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)

How to create a constant in Python? How to create a constant in Python? Aug 29, 2023 pm 05:17 PM

Constants and variables are used to store data values ​​in programming. A variable usually refers to a value that can change over time. A constant is a type of variable whose value cannot be changed during program execution. There are only six built-in constants available in Python, they are False, True, None, NotImplemented, Ellipsis(...) and __debug__. Apart from these constants, Python does not have any built-in data types to store constant values. Example An example of a constant is demonstrated below - False=100 outputs SyntaxError:cannotassigntoFalseFalse is a built-in constant in Python that is used to store boolean values

What are constants in C language? Can you give an example? What are constants in C language? Can you give an example? Aug 28, 2023 pm 10:45 PM

A constant is also called a variable and once defined, its value does not change during the execution of the program. Therefore, we can declare a variable as a constant referencing a fixed value. It is also called text. Constants must be defined using the Const keyword. Syntax The syntax of constants used in C programming language is as follows - consttypeVariableName; (or) consttype*VariableName; Different types of constants The different types of constants used in C programming language are as follows: Integer constants - For example: 1,0,34, 4567 Floating point constants - Example: 0.0, 156.89, 23.456 Octal and Hexadecimal constants - Example: Hex: 0x2a, 0xaa.. Octal

In Java, is it possible to define a constant using only the final keyword? In Java, is it possible to define a constant using only the final keyword? Sep 20, 2023 pm 04:17 PM

A constant variable is a variable whose value is fixed and only one copy exists in the program. Once you declare a constant variable and assign a value to it, you cannot change its value again throughout the program. Unlike other languages, Java does not directly support constants. However, you can still create a constant by declaring a variable static and final. Static - Once you declare a static variable, they will be loaded into memory at compile time, i.e. only one copy will be available. Final - Once you declare a final variable, its value cannot be modified. Therefore, you can create a constant in Java by declaring the instance variable as static and final. Example Demonstration classData{&am

PHP error: How to solve the problem when calling undefined constant? PHP error: How to solve the problem when calling undefined constant? Aug 26, 2023 pm 03:39 PM

PHP is a server-side scripting language widely used in web development. Its flexibility and ease of use make it the first choice for many developers. However, when using PHP, we sometimes encounter some error reports. This article will focus on the "Call to undefined constant" error and how to resolve it. 1. Problem Description When we use an undefined constant in the code, PHP will throw a fatal error, prompting us to call an undefined constant. Here is a common example: echoMY_

PHP error: What should I do if I use an undefined constant as a property name? PHP error: What should I do if I use an undefined constant as a property name? Aug 17, 2023 pm 02:13 PM

PHP error: What should I do if I use an undefined constant as a property name? In PHP development, we often use classes and objects to organize and manage code. In the process of defining a class, the attributes of the class (i.e. member variables) play an important role in saving data. However, when we use properties, sometimes an error occurs when using undefined constants as property names. This article explains the causes of this error and provides several solutions. First, let's look at a simple example to demonstrate this problem. Suppose we have a file named "Per

Definition and initialization methods of basic data type constants study guide Definition and initialization methods of basic data type constants study guide Jan 05, 2024 pm 02:08 PM

To learn the definition and initialization method of basic data type constants, specific code examples are required. In programming, various basic data types are often used, such as integers, floating point types, character types, etc. When using these data types, you not only need to understand their definition and usage, but also how to define and initialize their constants. This article will introduce you to the definition and initialization method of basic data type constants, and give specific code examples. Definition and initialization method of integer constants Integer constants include int, long, short and byt

FILTER_SANITIZE_SPECIAL_CHARS constant in PHP FILTER_SANITIZE_SPECIAL_CHARS constant in PHP Aug 20, 2023 pm 09:58 PM

The FILTER_SANITIZE_SPECIAL_CHARS constant filters HTML escaped special characters. Flags FILTER_FLAG_STRIP_LOW − Strip characters with ASCII values ​​below 32 FILTER_FLAG_STRIP_HIGH − Strip characters with ASCII values ​​above 32 FILTER_FLAG_ENCODE_HIGH − Encode characters with ASCII values ​​above 32 Return value FILTER_SANITIZE_SPECIAL_CHARS constant does nothing. Example Demo&

Naming conventions in PHP: How to name constants and file names using underscore nomenclature Naming conventions in PHP: How to name constants and file names using underscore nomenclature Jul 30, 2023 am 10:36 AM

Naming conventions in PHP: How to use underscore nomenclature to name constants and file names In PHP programming, good naming conventions are very important to improve the readability and maintainability of the code. This article will introduce how to use underscore nomenclature to name constants and file names, and demonstrate it with code examples. Naming convention for constants In PHP, constants are usually named in all uppercase letters, with words separated by underscores. This naming convention clearly distinguishes constants from variables and is easy to read and understand. Here are some common constant naming examples: def

See all articles