php array_pop dengan kunci

print_r(array_slice(array("a" => "1", "b" => 2, "c" => 3), -1, 1));
Homeless Hoopoe