<?php $arr = ['ka' => 'va', 'kb' => 'vb', 'kc' => 'vc']; $part = array_slice($arr, 1, 1, true); $key = key($part); $value = current($part); var_dump($arr, $part, $key, $value);
You have javascript disabled. You will not be able to edit any code.