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.
 
 

15 lines
178 B

--TEST--
Defining and using constants
--FILE--
<?php
define('foo', 2);
define('foo1', 3);
var_dump(constant('foo'));
var_dump(constant('foo1'));
?>
--EXPECTF--
int(2)
int(3)