php-src/Zend/tests/errmsg_040.phpt

22 lines
241 B
Plaintext
Raw Normal View History

2007-02-07 19:10:32 +08:00
--TEST--
errmsg: arrays are not allowed in class constants
--FILE--
<?php
class test {
2020-02-04 05:52:20 +08:00
const TEST = array(1,2,3);
2007-02-07 19:10:32 +08:00
}
var_dump(test::TEST);
2007-02-07 19:10:32 +08:00
echo "Done\n";
?>
2018-09-17 01:16:42 +08:00
--EXPECT--
array(3) {
[0]=>
int(1)
[1]=>
int(2)
[2]=>
int(3)
}
Done