我正在合併數組值。我的代碼,它工作正常。陣列首先合併
function photomag_image_size() {
$image_sizes = get_intermediate_image_sizes();
return array_merge($image_sizes, array(
'full',
));
}
現在我想添加另一個數組起初還保持最後陣列「滿」。可能是空白數組,因爲我想先填充第一個下拉列表爲空。
我正在合併數組值。我的代碼,它工作正常。陣列首先合併
function photomag_image_size() {
$image_sizes = get_intermediate_image_sizes();
return array_merge($image_sizes, array(
'full',
));
}
現在我想添加另一個數組起初還保持最後陣列「滿」。可能是空白數組,因爲我想先填充第一個下拉列表爲空。
嘗試用array_unshift() PHP函數檢查here 這樣
$queue=array_merge($image_sizes, array(
'full',
));
array_unshift($queue, " ");
return $queue;
您可以使用array_unshift
或只是合併像你full
這樣做的:
function photomag_image_size() {
$image_sizes = get_intermediate_image_sizes();
$image_sizes = array_merge(array(""), $image_sizes);
return array_merge($image_sizes, array('full'));
}
使用array_merge
再次
$temp = array_merge($image_sizes, array('full'));
return array_merge(array("first") , $temp);
@Sadia你試過嗎? –
對不起,我在路上。 –