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.
 
 

16 lines
273 B

<?php
function bool_literal_identical(bool $pjax): array
{
return [
true === $pjax,
$pjax === true,
false !== $pjax,
$pjax !== false,
];
}
function dynamic_bool_literal_identical(mixed $value): bool
{
return true === $value;
}