28.10.2015, 18:54
PHP код:
Accessing element at index 17 past array upper bound 16
example:
new test[12];
test[0] = 0; //ok
test[1] = 0;
...
test[11] = 0; //ok
test[12] = 0; //crash
look
new test[12]; //variable test has 12 indexes
//indexes: 0, 1, 2, ..., 11