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.
 
 

18 lines
271 B

--TEST--
assign compare
--FILE--
<?php
// Test spaceship operator (PHP 7+)
$spaceship1 = 5 <=> 10; // -1
var_dump($spaceship1);
$spaceship2 = 10 <=> 10; // 0
var_dump($spaceship2);
$spaceship3 = 15 <=> 10; // 1
var_dump($spaceship3);
?>
--EXPECT--
int(-1)
int(0)
int(1)