Например:
Код: Выделить всё
$data = Array('first' , 'second' , 'third');
array_delete($data[2]);
#$data would now read Array('first', 'second')
Спасибо.
Подробнее здесь: https://stackoverflow.com/questions/472 ... -php-array
Код: Выделить всё
$data = Array('first' , 'second' , 'third');
array_delete($data[2]);
#$data would now read Array('first', 'second')