Home php教程 php手册 PHP入门基础之常量类型学习笔记

PHP入门基础之常量类型学习笔记

Jun 13, 2016 am 10:17 AM
php one time getting Started about Base study constant Summarize article use of notes type

本文章来给大家总结一下关于PHP常量类型的一些用法,这是一朋友的学习笔记,下面我来分享给各位同学。

在PHP中的一个常量一旦被定义,就不能再改变或者取消定义;常量有预定义常量(内部常量),和PHP默认定义的常量,当然也可以自定义常量。

以下是其中几个预定义常量:(完整预定义常量,请参阅PHP手册)

TRUE ,该常量是真值(true),为真(成立)。

FALSE ,该常量是伪值(false),为假(不成立)。

PHP_VERSION ,该常量是当前PHP程序的版本号,如 “5.2.17”。

PHP_OS ,该常量是当前执行PHP程序解析器的操作系统名称,如 “Linux”。

DIRECTORY_SEPARATOR ,表示路径分隔符,在Windowns上为“”,Linux上为“/”。

以下是其中几个PHP默认常量:

E_ERROR ,这个常量指到最近的错误处。

E_WARNING ,这个常量指到最近的警告处。

E_PARSE ,这个常量为解析语法有潜在问题处。

E_NOTICE ,这个常式为发生不寻常但不一定是错误处。例如存取一个不存在的变量。

PHP 向它运行的任何脚本提供了大量的预定义常量。不过很多常量都是由不同的扩展库定义的,只有在加载了这些扩展库时才会出现,或者动态加载后,或者在编译时已经包括进去了。

PHP有几个称为“魔术常量”的常量,它们的值随着它们在代码中的位置改变而改变。例如 “__LINE__ ”的值就依赖于它在脚本中所处的行来决定。这些特殊的常量不区分大小写(但一般作大写),如下

“__LINE__” 文件中该常量所在的行号。

“__FILE__” 文件的完整路径和文件名。如果用在被包含文件中,则返回被包含的文件名。__FILE__ 还包含了一个绝对路径(如果是符号连接,则是解析后的绝对路径)。

“__DIR__” 文件所在的目录。如果用在被包括文件中,则返回被包括的文件所在的目录。它等价于 dirname(__FILE__)。除非是根目录,否则目录中名不包括末尾的斜杠。(PHP 5.3.0中新增)

“__FUNCTION__” 函数名称,自 PHP 5 起本常量返回该函数被定义时的名字(区分大小写)。

“__CLASS__” 类的名称,自 PHP 5 起本常量返回该类被定义时的名字(区分大小写)。

“__METHOD__” 类的方法名,返回该方法被定义时的名字(区分大小写)。

“__NAMESPACE__” 当前命名空间的名称(大小写敏感),这个常量是在编译时定义的。

 

当然在程序写作时,以上的默认常量是不够用。define() 的功能可以让我们自行定义所需要的常量。见下例:

1234
 

常量名和其它任何 PHP 标签遵循同样的命名规则。合法的常量名以字母或下划线开始,后面跟着任何字母,数字或下划线。

常量默认为大小写敏感,按照惯例常量标识符总是大写的,在脚本执行期间该值不能改变。

定义常量和定义变量的区别:

常量前面没有美元符号($)
常量只能用 define() 函数定义,而不能通过赋值语句
常量可以不用理会变量范围的规则而在任何地方定义和访问
常量一旦定义就不能被重新定义或者取消定义
常量的值只能是标量

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

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.

CakePHP Working with Database CakePHP Working with Database Sep 10, 2024 pm 05:25 PM

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

See all articles