-3

嗨,这是我尝试的代码,第一个 while 语句适用于行(适用于 weights0,但我无法让它与列(高度)一起使用。它的工作原理是,如果 min_height 输入值为 20 且 max_height 为 50,则列将看起来像这样 20 25 30 35 40 45 50。我的代码目前适用于行但不适用于列,有人可以帮忙吗?

<?php
$rowiStep = 5;
$coliStep = 5;
// Get these
$iweightMin = $_GET["min_weight"];
$iweightMax = $_GET["max_weight"];
$iheightMin = $_GET["max_height"];
$iheightmax = $_GET["min_height"];

$iCur = $iweightMin;
$iCol = $iheightMin;
print('<table class="table">');
print('<tr ><td>Height/</br>Weight</td>');
while ($iCur <= $iweightMax) {
    printf('<tr><td>%d</td></tr>', $iCur);
    $iCur += $rowiStep;
}

$rowiCol = $iheightMin;

while ($iCol <= $iheightmax) {
   printf('<tr><td></td>', $iCol);
   $iCol += $rowiCol;
}

print ('</tr>');
print('</table>');  

?>
4

1 回答 1

0

如果您要打印身高/体重矩阵;尝试这个:

$rowiStep = 5;
$coliStep = 5;
$output = array(
    '<table>'
);

for( $row_val = $_GET['min_weight'], $row_max <= $_GET['max_weight'];
     $row_val < $row_max;
     $row_val += $rowistep )
{
    $output[] = '<tr><td>' . $row_val . '</td>';
    for( $col_val = $_GET['min_height'], $col_val <= $_GET['max_height'];
         $col_val < $col_max;
         $col_val += $colistep )
    {
        $output[] = '<td>' . $col_val . '</td>';
    }
    $output[] = '</tr>';
}
$output[] = '</table>';
echo implode( "\n", $output );

这将产生如下输出:

|min_weight            |min_height|min_height+colIStep|min_height+2colIstep|...|
|min_weight + rowIstep |min_height|min_height+colIStep|min_height+2colIstep|...|
|min_weight + 2rowIstep|min_height|min_height+colIStep|min_height+2colIstep|...|
|...|

你在寻找什么输出?

于 2013-03-14T21:31:34.470 回答