我想在数组推送表中将值数据对齐。我不能这样做。先感谢您。
foreach ($reps as $rep) {
array_push($reptList,
array(
'id' => $rep->id,
'value' => 'Rs. '.number_format($rep->value, 2),
)
);
}
答案 0 :(得分:0)
将span标记添加到数组
中的数字值foreach ($reps as $rep) {
array_push($reptList,
array(
'id' => $rep->id,
'value' => 'Rs. <span style="text-align:right">'.number_format($rep->value, 2).'</span>',
)
);
}
答案 1 :(得分:0)