Welcome to 16892 Developer Community-Open, Learning,Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I am attempting to make a sales report function for my database website, and I want to generate a profit value. Here is the method I am using:

function total_price($totals)
{
  $sub = 0;
  foreach ($totals as $total)
  {
    $sum += $total['total_saleing_price'];
    $sub += $total['total_buying_price'];
    $profit = $sum - $sub;

However, I get an error

UNDEFINED VARIABLE: PROFIT.

Can anyone help?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
4.0k views
Welcome To Ask or Share your Answers For Others

1 Answer

Assign $profit = 0 out of loop.

Also validate totals before iterating.

if(is_array($totals)){
  foreach($totals as $total ){
    // write your code here
  }
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to 16892 Developer Community-Open, Learning and Share
...