Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
4.0k views
in Technique[技术] by (71.8m points)

php - "Undefined variable: Profit $sum-$sub"

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?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Assign $profit = 0 out of loop.

Also validate totals before iterating.

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...