My array looks like this:
$arValues = array( 345 => \"jhdrfr\", 534 => \"jhdrffr\", 673 => \"jhrffr\", 234 => \"jfrhfr\" );
How
// 1 is the index of the first object to get // NULL to get everything until the end // true to preserve keys $arValues = array_slice($arValues, 1, NULL, true);