--TEST-- gmp_hamdist() basic tests --EXTENSIONS-- gmp --FILE-- getMessage() . \PHP_EOL; } try { var_dump(gmp_hamdist(array(), $n)); } catch (\TypeError $e) { echo $e->getMessage() . \PHP_EOL; } try { var_dump(gmp_hamdist(array(), array())); } catch (\TypeError $e) { echo $e->getMessage() . \PHP_EOL; } echo "Done\n"; ?> --EXPECT-- int(13) int(-1) int(36) int(-1) int(43) int(0) int(26) gmp_hamdist(): Argument #2 ($num2) must be of type GMP|string|int, array given gmp_hamdist(): Argument #1 ($num1) must be of type GMP|string|int, array given gmp_hamdist(): Argument #1 ($num1) must be of type GMP|string|int, array given Done