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.
 
 

20 lines
297 B

--TEST--
bindec/hexdec/octdec edge cases: invalid input
--FILE--
<?php
var_dump(bindec(""));
var_dump(hexdec(""));
var_dump(octdec(""));
var_dump(bindec("2"));
var_dump(hexdec("G"));
var_dump(bindec("1010"));
var_dump(hexdec("A"));
?>
--EXPECT--
int(0)
int(0)
int(0)
int(0)
int(0)
int(10)
int(10)