我如何根据所用的纸张总数知道我使用了多少墨水

时间:2015-11-28 18:58:52

标签: php if-statement increment

所以我想制作一个IF语句,根据所用的论文返回总墨水消耗量。

一(1)盒墨水= 9,600张纸

这对于什么是正确的逻辑?

这是我的代码:

if ($total_papers <= 9600) {
    //the number of box will increment
    //so if the total is    19,200 it should return 2 boxes.

} else{ //not more than 1 box }

1 个答案:

答案 0 :(得分:0)

if语句无法返回任何内容。如果您想根据使用的纸张数量计算油墨消耗量,只需进行分割,然后进行细分:

$ink = ceil($total_papers/9600);

这样您就可以获得使用的墨盒数量。然后,您可以在$ink声明中(或您喜欢的任何地方)使用if