質問
現在、私の出力はこのPNL testing 1,10,PNL testing 2,55 のようになっています。それを操作して、次のような文字列として 2 つの異なる変数に格納したいと考えています。
$teams = "PNL テスト 1、PNL テスト 2";
$金額= "10, 55";
上記の形式でどのように分割すればよいか教えてください。
コード
while ($row1 = mysql_fetch_assoc($result)){
$profit = 0;
$total = 0;
$loss = 0;
$final_array = '';
$final_array .= $teams = $row1['t_name'].",";
$teams = explode(",", $teams);
$transact_money = $row1['pnl_amount'];
$pnl_results = $row1['pnl'];
$transact_money = explode("|", $transact_money);
$pnl_results = explode("|", $pnl_results);
for($i=0; $i<count($transact_money); $i++){
if($pnl_results[$i]=='Profit'){
$profit = $profit + $transact_money[$i];
}else{
$loss = $loss + $transact_money[$i];
}//end if
}//end for..
$team_profits = $profit - $loss.",";
$final_array .= $team_profits;
echo $final_array;
}