Answers for "parse error: invalid numeric literal"

PHP
0

parse error: invalid numeric literal

//Either use them as strings, or actual integers
$a = array(1, 8, 9, 12); // Integers
$a = array("00001", "00008", "00009", "00012"); // Strings
Posted by: Guest on April-27-2022

Code answers related to "parse error: invalid numeric literal"

Browse Popular Code Answers by Language