File: constants_basic_001.phpt

package info (click to toggle)
php7.0 7.0.33-0%2Bdeb9u8
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 184,180 kB
  • sloc: ansic: 809,195; php: 22,035; sh: 11,873; cpp: 8,064; xml: 6,228; javascript: 2,546; yacc: 1,869; exp: 1,514; makefile: 1,231; pascal: 1,200; awk: 501; perl: 315; sql: 22
file content (92 lines) | stat: -rw-r--r-- 1,828 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
--TEST--
Class constant declarations
--FILE--
<?php
  define('DEFINED', 1234);
  $def = 456;
  define('DEFINED_TO_VAR', $def);
  define('DEFINED_TO_UNDEF_VAR', $undef);
  
  class C
  {
      const c0 = UNDEFINED;
      
      const c1 = 1, c2 = 1.5;
      const c3 =  + 1, c4 =  + 1.5;
      const c5 = -1, c6 = -1.5;
      
      const c7 = __LINE__;
      const c8 = __FILE__;
      const c9 = __CLASS__;
      const c10 = __METHOD__;
      const c11 = __FUNCTION__;
      
      const c12 = DEFINED;
      const c13 = DEFINED_TO_VAR;
      const c14 = DEFINED_TO_UNDEF_VAR;
      
      const c15 = "hello1";
      const c16 = 'hello2';
      const c17 = C::c16;
      const c18 = self::c17;
  }
  
  echo "\nAttempt to access various kinds of class constants:\n";
  var_dump(C::c0);
  var_dump(C::c1);
  var_dump(C::c2);
  var_dump(C::c3);
  var_dump(C::c4);
  var_dump(C::c5);
  var_dump(C::c6);
  var_dump(C::c7);
  var_dump(C::c8);
  var_dump(C::c9);
  var_dump(C::c10);
  var_dump(C::c11);
  var_dump(C::c12);
  var_dump(C::c13);
  var_dump(C::c14);
  var_dump(C::c15);
  var_dump(C::c16);
  var_dump(C::c17);
  var_dump(C::c18);
  
  echo "\nExpecting fatal error:\n";
  var_dump(C::c19);
  
  echo "\nYou should not see this.";
?>
--EXPECTF--

Notice: Undefined variable: undef in %s on line 5

Attempt to access various kinds of class constants:

Notice: Use of undefined constant UNDEFINED - assumed 'UNDEFINED' in %s on line %d
string(9) "UNDEFINED"
int(1)
float(1.5)
int(1)
float(1.5)
int(-1)
float(-1.5)
int(15)
string(%d) "%s"
string(1) "C"
string(1) "C"
string(0) ""
int(1234)
int(456)
NULL
string(6) "hello1"
string(6) "hello2"
string(6) "hello2"
string(6) "hello2"

Expecting fatal error:

Fatal error: Uncaught Error: Undefined class constant 'c19' in %s:53
Stack trace:
#0 {main}
  thrown in %s on line 53