mirror of
https://github.com/php/php-src.git
synced 2026-04-18 21:41:22 +02:00
For rationale, see #6787 Extensions migrated in part 3: * ftp * gmp * iconv * opcache * shmop
25 lines
361 B
PHP
25 lines
361 B
PHP
--TEST--
|
|
JIT CMP: 001
|
|
--INI--
|
|
opcache.enable=1
|
|
opcache.enable_cli=1
|
|
opcache.file_update_protection=0
|
|
opcache.jit_buffer_size=1M
|
|
opcache.protect_memory=1
|
|
--EXTENSIONS--
|
|
opcache
|
|
--FILE--
|
|
<?php
|
|
$a = 0;
|
|
$b = 0.0;
|
|
var_dump($a < $b ? 1 : 0);
|
|
var_dump($a > $b ? 1 : 0);
|
|
var_dump($a <= $b ? 1 : 0);
|
|
var_dump($a >= $b ? 1 : 0);
|
|
?>
|
|
--EXPECT--
|
|
int(0)
|
|
int(0)
|
|
int(1)
|
|
int(1)
|