TypePHP 编译器
https://swoole.com/aot/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
610 B
31 lines
610 B
--TEST--
|
|
Basic class support - defining and reading a class constant.
|
|
--FILE--
|
|
<?php
|
|
class aclass
|
|
{
|
|
const myConst = "hello";
|
|
}
|
|
|
|
function main() {
|
|
echo "\nRead class constant.\n";
|
|
var_dump(aclass::myConst);
|
|
|
|
echo "\nFail to read class constant from instance.\n";
|
|
$myInstance = new aclass();
|
|
var_dump($myInstance->myConst);
|
|
|
|
echo "\nClass constant not visible in object var_dump.\n";
|
|
var_dump($myInstance);
|
|
}
|
|
?>
|
|
--EXPECTF--
|
|
Read class constant.
|
|
string(5) "hello"
|
|
|
|
Fail to read class constant from instance.
|
|
NULL
|
|
|
|
Class constant not visible in object var_dump.
|
|
object(aclass)#%d (0) {
|
|
}
|
|
|