Home > Backend Development > PHP Tutorial > PHP define() 函数

PHP define() 函数

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-13 11:52:05
Original
1034 people have browsed it

PHP 一些基础知识的记录

?

PHP define() 函数

?

定义和用法

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

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

  • 在设定以后,常量的值无法更改
  • 常量名不需要开头的美元符号 ($)
  • 作用域不影响对常量的访问
  • 常量值只能是字符串或数字

语法:

?

define(name,value,case_insensitive)
Copy after login

?

参数描述
name 必需。规定常量的名称。
value 必需。规定常量的值。
case_insensitive

可选。规定常量的名称是否对大小写敏感。

若设置为 true,则对大小写不敏感。默认是 false(大小写敏感)。

例子

例子 1

定义一个大小写敏感的常量:

<?php <code>define("GREETING","Hello world!");echo constant("GREETING");?>
Copy after login

输出:

Hello world!
Copy after login
Copy after login

例子 2

定义一个大小写不敏感的常量:

<?php <code>define("GREETING","Hello world!",TRUE);echo constant("greeting");?>
Copy after login

输出:

Hello world!
Copy after login
Copy after login

?

?

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