当我尝试在这个 echo 和 div 类中 print_r 时,它返回的病人欠债 1 怎么办?
$balance_out = sql::results("SELECT CODE,BALANCE FROM event.acs.ptbalance() WHERE CODE='$patient_id' and BALANCE > 0");
echo "<div class='patient_alert red'>Patient owes ".print_r($balance_out)."</div>";
但是,如果我只是这样 print_r 它会给我正确的数组。
echo "<pre>"; print_r ($balance_out); echo "</pre>";
像这样:
Array
(
[0] => Array
(
[CODE] => ACSSCHAR00
[BALANCE] => 24.33
)
)
任何帮助将不胜感激。我必须确定我想要的数组键值吗?