PHP函数的和值

时间:2010-07-27 19:59:15

标签: php function sum while-loop

我们编写了这个PHP脚本代码:

function price($id)
              {
                      $ergebnis = mysql_query("SELECT * FROM preiszuordnungen where id=$id");
                           while($row = mysql_fetch_object($ergebnis))
           { 
  //Wenn grundpreis dann färben
  if($row->typ=="grundpreis")
             {
      $gp="style=\"background-color: #FF22FF; color: #FFFFFF; padding: 5px;\"";
                }
              else
             {
               }

  //preisfomat umändern
           $preis="+ ".number_format($row->preis,2)." EUR";
            $GLOBALS["$id"] = $row->preis;





             //zeile ausgeben
          echo"<div $gp class=\"rechnung_bezeichnung\">$row->bezeichnung</div><div $gp                    class=\"rechnung_preis\">$preis</div><p style=\"clear: both;\">";
             }    
       }

我们的问题是我们无法使用此函数中的变量。在我们的脚本中,我们需要这样的函数:

$preis=price(101);

$preis=price(909);  
         ...

现在我们要总结函数的输出。变量$ row-&gt;价格

如果有人可以帮助我们,我们很高兴。

1 个答案:

答案 0 :(得分:0)

只需添加

return $row->preis;

到函数的末尾。