mirror of
https://github.com/php/php-src.git
synced 2024-12-25 17:59:52 +08:00
23 lines
296 B
Plaintext
23 lines
296 B
Plaintext
|
--TEST--
|
||
|
class constants basic tests
|
||
|
--FILE--
|
||
|
<?php
|
||
|
|
||
|
class test {
|
||
|
const val = "string";
|
||
|
const val2 = 1;
|
||
|
}
|
||
|
|
||
|
var_dump(test::val);
|
||
|
var_dump(test::val2);
|
||
|
|
||
|
var_dump(test::val3);
|
||
|
|
||
|
echo "Done\n";
|
||
|
?>
|
||
|
--EXPECTF--
|
||
|
string(6) "string"
|
||
|
int(1)
|
||
|
|
||
|
Fatal error: Undefined class constant 'val3' in %s on line %d
|