PHP Fatal error: Cannot use empty array elements in arrays

revision 5f1b9b3535f1ade33221134d8a17b5c6856c99aa

raw

phork0.php

1
2
3
4
5
6
7
8
<?php
$a = array(
    1,
    ,
    2
);
?>
 
raw

phork1.txt

Message on PHP 7.1:
PHP Fatal error:  Cannot use empty array elements in arrays in file.php on line 1

Happens when there are two consecutive commas: [1,,2]

bug report: https://bugs.php.net/bug.php?id=75426

History