Home Backend Development PHP Tutorial How to use php const constant modifier_PHP tutorial

How to use php const constant modifier_PHP tutorial

Jul 13, 2016 am 10:49 AM
const php Instructions exist definition constant us method have want

If we want to define constants in PHP, there are many ways to do it, but if we want to define constants in a class, we will most likely use the const constant modifier to define them. Let me introduce the operation method to you.

Defining constants in PHP is done through the define() function, but defining constants in a class cannot use define(), but requires the const modifier. After constants in a class are defined using const, their access methods are similar to static members. They are accessed through the class name or using self in the member method. However, after PHP 5.3.0, they can also be accessed using objects. A constant defined by const cannot be reassigned, and an error will occur if you try to change its value in the program.

http://www.bkjia.com/PHPjc/632685.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/632685.htmlTechArticleIf we want to define constants in php, there are many ways, but in classes we will mostly use them to define constants The const constant modifier is defined. Let me introduce the operation to you...
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
The code is as follows Copy code
 代码如下 复制代码

class MyClass {

const CONSTANT = 'CONSTANT value' ; //使用const声明一个常量,并直接赋上初使值

function showConstant() {

echo self ::CONSTANT ."
" ;//使用self访问常量,注意常量前不要加“$” 

             } 

      } 

      echo MyClass:: CONSTANT . "
" ; //在类外部使用类名称访问常量,也不要加”$” 

      $class = new MyClass();                      

     $class->showConstant();                       

      echo $class ::CONSTANT;  // PHP 5.3.0之后 

?>

class MyClass {

const CONSTANT = 'CONSTANT value' ; //Use const to declare a constant and assign the initial value directly
代码如下 复制代码

class MyClass {

const CONSTANT = 'CONSTANT value' ;

function setCONSTANT(){

self ::CONSTANT = 'news CONSTANT' ;//程序运行结果将会出错。

}

}

echo MyClass:: CONSTANT ;

?>

function showConstant() {                                                                                                           echo self ::CONSTANT ."
" ;//Use self to access constants, be careful not to add "$" before the constants                                                                                                            } echo MyClass:: CONSTANT . "
" ; //Use the class name to access constants outside the class, and do not add "$" $class = new MyClass(); $class->showConstant(); echo $class ::CONSTANT; // After PHP 5.3.0 ?> Attention to details: There is no need to use the "$" symbol before a constant name defined using const, and constant names are usually in uppercase. Attempting to assign a value to a constant defined by const will result in an error.
The code is as follows Copy code
<🎜> class MyClass { <🎜> <🎜> const CONSTANT = 'CONSTANT value' ; <🎜> <🎜> function setCONSTANT(){ <🎜> <🎜> Self :: constant = 'News Constant'; // The program running results will be wrong. <🎜> <🎜> }                                                                                                             <🎜> } <🎜> <🎜> echo MyClass:: CONSTANT ; <🎜>?>

The program running result will be wrong.


The difference between using const modified constants and other constants is: do not use "$" before the constant name, remember! Of course, this constant value cannot be modified. Once defined, it cannot be "artificially" modified anywhere in the program. This is the same as using define to define, and using const to define of course also follows the naming rules of other constants


Extended reading:

There is no dollar sign ($) in front of the constant;
Constants can only be defined using the define() function, not assignment statements;
Constants can be defined and accessed anywhere regardless of variable scope rules;
Once a constant is defined, it cannot be redefined or undefined;
The value of a constant can only be a scalar;
Constants can only contain scalar data (boolean, integer, float and string), do not define resource constants.
You can use the function constant() to read the value of a constant. get_defined_constants() can get a list of all defined constants.
If an undefined constant is used, PHP assumes that what is wanted is the name of the constant itself, as if calling it with a string (CONSTANT corresponds to "CONSTANT"), and an E_NOTICE level error will be issued.
PHP’s “magic constants”.

Name

名称

说明

__LINE__

文件中的当前行号。

__FILE__

文件的完整路径和文件名。如果用在包含文件中,则返回包含文件名。自 PHP 4.0.2 起,__FILE__ 总是包含一个绝对路径,而在此之前的版本有时会包含一个相对路径。

__FUNCTION__

函数名称(PHP 4.3.0 新加)。自 PHP 5 起本常量返回该函数被定义时的名字(区分大小写)。在 PHP 4 中该值总是小写字母的。

__CLASS__

类的名称(PHP 4.3.0 新加)。自 PHP 5 起本常量返回该类被定义时的名字(区分大小写)。在 PHP 4 中该值总是小写字母的。

__METHOD__

类的方法名(PHP 5.0.0 新加)。返回该方法被定义时的名字(区分大小写)。

Description

__LINE__

__FILE__ The full path and file name of the file. If used in an include file, returns the include file name. As of PHP 4.0.2, __FILE__ always contains an absolute path, while versions before that sometimes contained a relative path.
__FUNCTION__ Function name (newly added in PHP 4.3.0). Since PHP 5 this constant returns the name of the function as it was defined (case sensitive). In PHP 4 this value is always lowercase.
__CLASS__ The name of the class (new in PHP 4.3.0). Since PHP 5 this constant returns the name of the class when it was defined (case sensitive). In PHP 4 this value is always lowercase.
__METHOD__ The method name of the class (newly added in PHP 5.0.0). Returns the name of the method as it was defined (case-sensitive).