我正在为我的公司制作关于在线调查页面的网页,我们的客户服务团队只需将一些复选框问题输入数据库。我的工作是在页面上显示它们并将玩家的答案收集回我们的数据库。
例如,如果我在数据库中有12个问题,我需要将它显示在表格中:
1 5 9
2 6 10
3 7 11
4 8 12
或者,如果我有13个问题,则应显示为
1 6 10
2 7 11
3 8 12
4 9 13
5
这可以用PHP中的一些if来完成,但我想用数学的方式来做这些只是为了丰富我的知识。
如果我可以在公式中传递总问题(在本例中为13)和垂直列数(在本例中为3),那么任何建议或提示都是值得赞赏的,它只是以这种方式返回数字的顺序{1 ,6,10,2,7,11,3,8,12,4,9,13,5} 老实说,我不会改写调查页面。我很好奇是否可以在编程中使用if / else进行一些数学运算。答案 0 :(得分:1)
修改强>
这是我生成数组的最新解决方案,它比以前更加数学化了:
$q = 27;//number of questions
$c = 4;//number of columns
$m = $q%$c;//modulus
$step = floor($q/$c);
$arr = array();
for ($n=0; $n<$q; $n++){
$arr[] = 1 + $step*($n%$c) + ($m + $n%$c - abs($m - $n%$c))/2 + floor($n/$c);
}
输出如下:
array(1, 8, 15, 22, 2, 9, 16, 23, 3, 10, 17, 24, 4, 11, 18, 25, 5, 12, 19, 26, 6, 13, 20, 27, 7, 14, 21);
原始答案:
$q = 13;//number of questions
$c = 3;//number of columns
$mod = array_fill(0, $c, 0);
for ($i=0; $i<($q%$c); $i++){
$mod[$i] = 1;
}
$step = floor($q/$c);
$arr = array();
$cum = 0;
for ($i=0; $i<$c; $i++){
$cum += @$mod[$i-1];
$arr[] = 1 + $step*$i + $cum;
}
$next = $arr;
for ($i=1; $i<$step; $i++){
foreach ($next as $key => $value){
$next[$key]++;
}
$arr = array_merge($arr, $next);
}
for ($i=0; $i<$c; $i++){
$next[$i] = ($next[$i] + 1)*$mod[$i] ;
}
$arr = array_filter(array_merge($arr, $next));
var_dump($arr);
输出结果为:
array(1, 6, 10, 2, 7, 11, 3, 8, 12, 4, 9, 13, 5);
这是我生成表格的解决方案:
$q = 27;//number of questions
$c = 4;//number of columns
$cell = '<td>i</td>';
$table = '<table>';
$mod = array_fill(0, $c, 0);
for ($i=0; $i<($q%$c); $i++){
$mod[$i] = 1;
}
$step = floor($q/$c);
$arr = array();
$cum = 0;
$table .= '<tr>';
for ($i=0; $i<$c; $i++){
$cum += @$mod[$i-1];
$num = 1 + $step*$i + $cum;
$arr[] = $num;
$table .= str_replace('i', $num, $cell);
}
$table .= '</tr><tr>';
$next = $arr;
for ($i=1; $i<$step; $i++){
foreach ($next as $key => $value){
$num = ++$next[$key];
$table .= str_replace('i', $num, $cell);
}
//$arr = array_merge($arr, $next);
$table .= '</tr><tr>';
}
$table = substr($table, 0 , -4);
for ($i=0; $i<$c; $i++){
$next[$i] = ($next[$i] + 1)*$mod[$i] ;
}
$next = array_filter($next);
$span = $c - count($next);
$ini = '';
$fin = '';
$last = '';
foreach ($next as $key => $value){
$ini = '<tr>';
$last .= str_replace('i', $value, $cell);
$fin = '<td span="'.$span.'"> </td></tr>';
}
//$arr = array_merge($arr, $next);
$table .= $ini.$last.$fin.'</table>';
echo $table;
有27个问题和4列,输出为:
<table>
<tr><td>1</td><td>8</td><td>15</td><td>22</td></tr>
<tr><td>2</td><td>9</td><td>16</td><td>23</td></tr>
<tr><td>3</td><td>10</td><td>17</td><td>24</td></tr>
<tr><td>4</td><td>11</td><td>18</td><td>25</td></tr>
<tr><td>5</td><td>12</td><td>19</td><td>26</td></tr>
<tr><td>6</td><td>13</td><td>20</td><td>27</td></tr>
<tr><td>7</td><td>14</td><td>21</td><td span="1"> </td></tr>
</table>
当然,您可以修改$cell
的值,以便在表格单元格中插入链接或任何内容。
答案 1 :(得分:0)
你可以尝试使用mod函数,即'%',并在其中使用数组。我在这里有一个问题。列数是否仍为3?如果是这样,那么您可以使用3个不同的数组来按顺序存储记录。然后在每列中显示它们。是的,在这里你不能通过使用单个html表来执行此操作,您需要为每列使用div。
答案 2 :(得分:0)
下面给出了第一种情况下作为数组的结果。但是当矩阵的所有单元格都没有值时,我认为必须使用if else语句
<?php
function lists ($total_cells, $vertical_cols) {
$total = $total_cells;
$cols = $vertical_cols;
$hor = (int)($total/$cols);
$res = array();
$j=0;
$current = 1;
for($j=1;$j<=$hor;$j++){
$current = $j;
for($i = 1; $i<=$cols; $i++) {
$res[$j][] = $current;
$current = $current+$hor;
}
}
return $res;
}
?>
答案 3 :(得分:-1)
假设您的复选框存储在名为$target
的数组中。
<?php
$target = array(1,2,3,4,5,6,7,8,9,10,11,12,13);
$target = array_chunk($target, 3); //Split the array into chunks of 3.
$result = array_map(function ($el) {
return implode("</td><td>", $el); //Implode the inner arrays with table cells
}, $target);
$result = implode("</td></tr><tr><td>", $result); //Implode the outer arrays with table rows.
echo "<table><tr><td>";
echo $result;
echo "</td></tr></table>";
您将获得 table in groups of three 。
如果你想要一个能确定列数的函数,你只需将array_chunk
中的数字“3”更改为该函数的参数:)