php-src/ext/standard/tests/strings/unpack_error.phpt
Nikita Popov de77344de2 Promote pack/unpack format errors
Errors related to invalid format strings (unlike data mismatch
errors) should throw ValueError.

Closes GH-6185.
2020-09-22 15:12:05 +02:00

15 lines
216 B
PHP

--TEST--
Test unpack() function : error conditions
--FILE--
<?php
try {
var_dump(unpack("B", pack("I", 65534)));
} catch (ValueError $e) {
echo $e->getMessage(), "\n";
}
?>
--EXPECT--
Invalid format type B