Heim >Backend-Entwicklung >PHP-Tutorial >php常量 定义与使用php常量

php常量 定义与使用php常量

WBOY
WBOYOriginal
2016-07-25 09:04:211148Durchsuche
  1. define("PI",3.14);定义一个常量
  2. $area = PI*R*R; 计算圆的面积
  3. define("URL","http://bbs.it-home.org");
  4. echo "my website url is:".URL;
  5. ?>
复制代码

2、系统常量 FILE :php程序文件名 LINE :PHP程序文件行数 PHP_VERSION:当前解析器的版本号 PHP_OS:执行当前PHP版本的操作系统名称 可以直接拿来使用,例如要查看执行当前PHP版本的操作系统名称,就可以写成 echo PHP_OS

3、php类常量

可以在类中定义常量。常量的值将始终保持不变。在定义和使用常量的时候不需要使用$符号。

常量的值必须是一个定值,不能是变量,类属性或其它操作(如函数调用)的结果。 接口(interface)中也可以定义常量。请查看接口的文档获得更多示例。

PHP5.3.0之后,可以用一个变量来动态调用类。但该变量的值不能为关键字self, parent 或static。

例1、定义并使用一个类常量

  1. class MyClass

  2. {
  3. const constant = ‘constant value';
  4. function showConstant() {
  5. echo self::constant . “\n”;
  6. }
  7. }
  8. echo MyClass::constant . “\n”;

  9. $classname = “MyClass”;

  10. echo $classname::constant . “\n”; // PHP 5.3.0之后
  11. $class = new MyClass();

  12. $class->showConstant();
  13. echo $class::constant.”\n”; // PHP 5.3.0之后

  14. ?>
复制代码

例2、静态数据

  1. class foo {
  2. // PHP 5.3.0之后
  3. const bar = bar
  4. EOT;
  5. }
  6. ?>
复制代码


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn