所以我想制作一个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 }
答案 0 :(得分:0)
if
语句无法返回任何内容。如果您想根据使用的纸张数量计算油墨消耗量,只需进行分割,然后进行细分:
$ink = ceil($total_papers/9600);
这样您就可以获得使用的墨盒数量。然后,您可以在$ink
声明中(或您喜欢的任何地方)使用if