1
0
mirror of https://github.com/php/php-src.git synced 2026-04-16 20:41:18 +02:00
Files
archived-php-src/Zend/tests/class_constants_001.phpt
2015-05-17 17:31:43 -05:00

26 lines
353 B
PHP

--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: Uncaught Error: Undefined class constant 'val3' in %s:%d
Stack trace:
#0 {main}
thrown in %s on line %d