Warning: fopen(/webroot/resource/php/f.txt): failed to open stream: No such file or directory in /54/754/CPAl/index.php on line 3
Warning: fclose() expects parameter 1 to be resource, boolean given in /54/754/CPAl/index.php on line 12
Warning: fclose() expects parameter 1 to be resource, boolean given in /54/754/CPAl/index.php on line 12
2016-03-07
foreach($arr as $k => $v){
// $arr 数组
// $k 元素的键
// $v 元素的值
}
foreach($arr as $v){
// $arr 数组
// $v 元素的值
}
感谢网友marvin在火星
// $arr 数组
// $k 元素的键
// $v 元素的值
}
foreach($arr as $v){
// $arr 数组
// $v 元素的值
}
感谢网友marvin在火星
2016-03-07
<?php
$maxLine = 4; //每排人数
$no = 16;//学生编号
$Line = ceil($no / $maxLine);
$row = $no % $maxLine ? $maxLine * $Line - $no : 4;
echo "编号<b>".$no."</b>的座位在第<b>".$Line."</b>排第<b>".$row."</b>个位置";
?>
$maxLine = 4; //每排人数
$no = 16;//学生编号
$Line = ceil($no / $maxLine);
$row = $no % $maxLine ? $maxLine * $Line - $no : 4;
echo "编号<b>".$no."</b>的座位在第<b>".$Line."</b>排第<b>".$row."</b>个位置";
?>
2016-03-07