仅对特定变量运行代码的 for 循环 PHP?


不妨假设以下内容为我们的数组 −

$marks=[45,67,89,34,98,57,77,30];

我们希望输出如下,仅带有特定的值

45
67
89
68
98
57
77
60

上面,我们把小于 40 的分数乘以 2,其余的数组保持不变。

示例

PHP 代码如下所示

 在线演示

<!DOCTYPE html>
<html>
<body>
<?php
   $marks=[45,67,89,34,98,57,77,30];
   echo "The Marks are as follows","<br>";
   foreach($marks as $tempMarks){
      if($tempMarks < 40){
         $tempMarks=$tempMarks*2;
      }
      echo $tempMarks,"<br>";
   }
?>
</body>
</html>

输出

将生成如下输出

The Marks are as follows
45
67
89
68
98
57
77
60

更新于: 2020 年 10 月 13 日

204 次浏览

开启您的职业生涯

完成课程获得认证

获取开始
广告