PHP Fatal error: Cannot use empty array elements in arrays

revision 96c9345e2ff067735d5f9cad3c0943a5a343ccdc

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]

History