我想知道如何在phpmyadmin数据库中插入'peter','paul','mary'排列值。 我的数据库(ID,名称1,名称2,名称3)ID是自动递增的。
<?php
function pc_permute($items, $perms = array()) {
if (empty($items)) {
echo join(' ', $perms) . "<br />";
} else {
for ($i = count($items) - 1; $i >= 0; --$i) {
$newitems = $items;
$newperms = $perms;
list($foo) = array_splice($newitems, $i, 1);
array_unshift($newperms, $foo);
pc_permute($newitems, $newperms);
}
}
}
$arr = array('peter', 'paul', 'mary');
pc_permute($arr);
?>
1 peter paul mary
2 peter mary paul
3 paul peter mary
4 paul mary peter
5 mary peter paul
6 mary paul peter