我有一个具有 literal_key => 值的 PHP 数组。我需要将键和值从数组的开头移开并将其粘贴在末尾(也保留键)。
我试过了:
$f = array_shift($fields);
array_push($fields, $f);
但这失去了关键价值。前任:
$fields = array ("hey" => "there", "how are" => "you");
// 在上面运行
这产生:
$fields = array ("how are" => "you", "0" => "there");
(我需要保持“嘿”而不是0)有什么想法吗?