欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php恒量 define() constant() , defined()

程序员文章站 2022-06-15 21:06:50
...
php常量 define() constant() , defined()

define――定义常量,若定义true,则读取时不区分大小写

bool define( string name, mixed value [, bool case_insensitive])

常量只能包含标量数据(booleanintegerfloatstring )。

define ( "CONSTANT" , "Hello world." );
echo
CONSTANT ; // outputs "Hello world."
echo Constant ; // outputs "Constant" and issues a notice.

define ( "GREETING" , "Hello you." , true );
echo
GREETING ; // outputs "Hello you."
echo Greeting ; // outputs "Hello you."

?

?

========================================

constant()――读取常量

mixed constant ( string name)

?

define ( "MAXSIZE" , 100 );

echo
MAXSIZE ;
echo
constant ( "MAXSIZE" ); // same thing as the previous line

?

===============================

?

defined――判断常量是否定义

?

bool defined ( string name)

?

if ( defined ( 'CONSTANT' )) {
????echo
CONSTANT ;
}

?

======================================================

?

预定义常量

?

__FILE__?? 取得文件的物理地址? 注:左右各2条下划线

?

echo __FILE__? ?? //C:\wamp\www\T1\1.php

?

?

?

?

php恒量 define() constant() , defined()

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。

相关文章

相关视频