15 lines
216 B
Plaintext
15 lines
216 B
Plaintext
|
|
--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
|