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
1 2 3 4 5 6 7 8
<?php $a = array( 1, , 2 ); ?>