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.
 
 

19 lines
419 B

--TEST--
hex2bin(); function test
--SKIPIF--
<?php
echo 'skip Test output differs under AOT compilation';
?>
--CREDITS--
edgarsandi - <edgar.r.sandi@gmail.com>
--FILE--
<?php
var_dump(hex2bin('AH'));
var_dump(hex2bin('HA'));
?>
--EXPECTF--
Warning: hex2bin(): Input string must be hexadecimal string in %s on line %d
bool(false)
Warning: hex2bin(): Input string must be hexadecimal string in %s on line %d
bool(false)