我想在 PHP 中非关联数组的特定索引之后插入新元素。这是我到目前为止所做的:
public function insertAfter($newElement, $key)
{
// Get index of given element
$index = array_search($key, array_keys($array));
$temp = array_slice($array, $index + 1, null, TRUE);
$temp2 = array_slice($array, sizeof($array) - $index, null, TRUE);
// Insert new element into the array
$array = array_merge($temp, array($newElement), $temp2);
}
但是,它并没有真正做到我想要的......它对数组做了一些奇怪的事情。你能帮忙吗?