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.
23 lines
509 B
23 lines
509 B
--TEST--
|
|
WASM runtime contains the portable PHP extension set
|
|
--FILE--
|
|
<?php
|
|
function main(): void
|
|
{
|
|
$loaded = array_fill_keys(get_loaded_extensions(), true);
|
|
foreach (['Core', 'date', 'ctype', 'calendar', 'bcmath', 'filter', 'tokenizer', 'mbstring', 'zlib', 'fileinfo'] as $extension) {
|
|
echo $extension, '=', isset($loaded[$extension]) ? 'yes' : 'no', "\n";
|
|
}
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
Core=yes
|
|
date=yes
|
|
ctype=yes
|
|
calendar=yes
|
|
bcmath=yes
|
|
filter=yes
|
|
tokenizer=yes
|
|
mbstring=yes
|
|
zlib=yes
|
|
fileinfo=yes
|
|
|