1--TEST--
2Test unpacking at the 32-bit integer limit
3--FILE--
4<?php
5$a = pack("AAAAAAAAAAAA", 1,2,3,4,5,6,7,8,9,10,11,12);
6unpack('h2147483647', $a);
7?>
8--EXPECTF--
9Warning: unpack(): Type h: not enough input values, need 1073741824 values but only 12 were provided in %s on line %d
10