为什么array_pad一次阻止添加超过1048576个元素?

时间:2017-09-28 07:27:33

标签: php arrays

The array_pad docs

  

一次最多可添加1048576个元素。

我试图找到限制来自的任何信息,但找不到任何限制。唯一与此相关的问题是关于PDO:#1#2,解决方案是扩大缓冲区的大小。但array_pad中没有PDO。

绝对可以创建一个包含更多元素的数组:

$array = range(1, 1048576 + 10);
echo count($array); // prints 1048586

事实上,有一个硬编码检查不会超过the array_pad sources中的此值。

但是......为什么?

1 个答案:

答案 0 :(得分:0)

为什么range会生成超过1048576个元素的数组?

来自PHP来源:

// ext/standard/array.c
PHP_FUNCTION(range)
{
   ...
   Z_PARAM_ZVAL(zlow)
   Z_PARAM_ZVAL(zhigh)
   Z_PARAM_OPTIONAL
   Z_PARAM_ZVAL(zstep)
   ...
   RANGE_CHECK_LONG_INIT_ARRAY(low, high);
   ...

RANGE_CHECK_LONG_INIT_ARRAY宏检查所请求序列的大小是否不超过或等于最大大小HT_MAX_SIZE - 1(HashTable Max Size)

// ext/standard/array.c
#define RANGE_CHECK_LONG_INIT_ARRAY(start, end) do { \
        zend_ulong __calc_size = (start - end) / lstep; \
        if (__calc_size >= HT_MAX_SIZE - 1) { \
            php_error_docref(NULL, E_WARNING, "The supplied range exceeds the maximum array size: start=" ZEND_LONG_FMT " end=" ZEND_LONG_FMT, end, start); \
            RETURN_FALSE; \
        } \

HT_MAX_SIZE值:

// Zend/types_types.h
#if SIZEOF_SIZE_T == 4 // 32 bit
# define HT_MAX_SIZE 0x04000000 /* small enough to avoid overflow checks */
...
#elif SIZEOF_SIZE_T == 8 // 64 bit
# define HT_MAX_SIZE 0x80000000

因此我们可以看到rang()将生成的数组的最大大小为:0x400000000 - 在32位系统上为2 = 67108862,在64位系统上为0x80000000 - 2 = 2147483646。

php > echo count(range(0,67108863));
PHP Warning:  range(): The supplied range exceeds the maximum array size: start=0 end=67108863 in php shell code on line 1


php > echo count(range(0,67108862));
PHP Fatal error:  Allowed memory size of 134217728 bytes exhausted (tried to allocate 1610612744 bytes) in php shell code on line 1

为什么array_pad阻止一次添加超过1048576个元素?

来自PHP来源:

// ext/standard/array.c
PHP_FUNCTION(array_pad)
{
    ...
    if (pad_size_abs < 0 || pad_size_abs - input_size > Z_L(1048576)) {
        php_error_docref(NULL, E_WARNING, "You may only pad up to 1048576 elements at a time");
        RETURN_FALSE;
     }

值1048576是硬编码的。