Home > Backend Development > PHP Tutorial > define()和defined()函数有什么区别

define()和defined()函数有什么区别

PHPz
Release: 2020-09-05 10:47:11
Original
3588 people have browsed it

define()和defined()函数的区别是:define()函数是用来定义一个常量的,而defined()函数用来检验常量是否存在,若存在则返回true,否则返回false。

define()和defined()函数有什么区别

define()和defined()函数有什么区别?

PHP中define( )函数用来定义一个常量;

而defined( )函数用来检验常量是否存在,存在则返回true;否则返回false。

define() 函数

define() 函数定义一个常量。

常量类似变量,不同之处在于:

在设定以后,常量的值无法更改

常量名不需要开头的美元符号 ($)

作用域不影响对常量的访问

常量值只能是字符串或数字

语法

define(name,value,case_insensitive)
Copy after login

defined() 函数

defined() 函数检查某常量是否存在。

若常量存在,则返回 true,否则返回 false。

语法

defined(name)
Copy after login

更多相关技术知识,请访问PHP中文网

Related labels:
php
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template