編輯:這比我想象的更難,我第一次(或兩個)搞砸了。它現在應該工作。
比方說,你已經存儲在一個二維數組你的表結構:
$data = array(
array('a', 'b', 'c', 'd', 'e'),
array('f', 'g', 'h', 'i', 'j'),
array('k', 'l', 'm', 'n', 'o'),
array('p', 'q', 'r')
);
既然你想保持相同的「形」,你需要確定表的尺寸。要做到這一點,我們可以取第一行的count
,因爲我們知道第一行必須是表的最大寬度。高度只是數組中元素的數量。
$width = count($data[0]); // 5
$height = count($data); // 4
我們也需要元素的總數,但我們可以高估$ width * $ height。
$total = $width * $height; // 20
然後,它真的只是一個小數學來計算事情的發展。我們必須爲舊的和新的指數使用單獨的計數器,因爲一旦我們開始出現漏洞,我們將不得不以不同的方式增加它們。
$new_data = array();
$j = 0;
for($i = 0; $i < $total; $i++) {
$old_x = floor($i/$width); // integer division
$old_y = $i % $width; // modulo
do {
$new_x = $j % $height; // modulo
$new_y = floor($j/$height); // integer division
$j++;
// move on to the next position if we have reached an index that isn't available in the old data structure
} while (!isset($data[$new_x][$new_y]) && $j < $total);
if (!isset($new_data[$new_x])) {
$new_data[$new_x] = array();
}
if (isset($data[$old_x][$old_y])) {
$new_data[$new_x][$new_y] = $data[$old_x][$old_y];
}
}
你想從數據庫中呈現表中的值? –
是的,但是你可以保持簡單並且在這個例子中使用一個數組:'array('a','b','c','d','e'...)'。 – enchance