我有一个问题,找不到任何解决方案。 我有一个数据库,从那里我选择了很多信息,而不是计算这些数据。
$table->td(
array($row->mailing_id, "width=\"20\" style=\" border-bottom-width: 1px; border-bottom-style: solid;\""),
array($row->mailing_unique_id, "width=\"20\" style=\" border-bottom-width: 1px; border-bottom-style: solid;\""),
array($row->mailing_name, "width=\"300\" style=\" border-bottom-width: 1px; border-bottom-style: solid;\""),
array($row->campaign_id, "width=\"20\" style=\" border-bottom-width: 1px; border-bottom-style: solid;\""),
array($row->segment_name, "width=\"100\" style=\" border-bottom-width: 1px; border-bottom-style: solid;\""),
array($row->total_sent, "width=\"20\" style=\" border-bottom-width: 1px; border-bottom-style: solid;\""),
array(@$viewSum[$row->mailing_unique_id], "width=\"20\" style=\" border-bottom-width: 1px; border-bottom-style: solid;\""),
array(@number_format((@$viewSum[$row->mailing_unique_id] * 100)/$row->total_sent, 2, '.', '.').'%', "width=\"20\" style=\" border-bottom-width: 1px; border-bottom-style: solid;\""),
array(number_format(@$leadssum[$row->mailing_unique_id],0, '.', '.'), "width=\"20\" style=\" border-bottom-width: 1px; border-bottom-style: solid;\""),
array(@number_format((@$leadssum[$row->mailing_unique_id]*100)/$row->total_sent,2, '.', '.').'%', "width=\"20\" style=\" border-bottom-width: 1px; border-bottom-style: solid;\""),
array(@number_format((@$leadssum[$row->mailing_unique_id] * 100)/@$viewSum[$row->mailing_unique_id], 2, '.', '.').'%', "width=\"20\" style=\" border-bottom-width: 1px; border-bottom-style: solid;\""),
array(number_format(@$crossviewSum[$row->mailing_unique_id],0, '.', '.'), "width=\"20\" style=\" border-bottom-width: 1px; border-bottom-style: solid;\""),
array(number_format(@$crossleadsSum[$row->mailing_unique_id],0, '.', '.'), "width=\"20\" style=\" border-bottom-width: 1px; border-bottom-style: solid;\""),
array(@number_format((@$crossleadsSum[$row->mailing_unique_id] * 100)/@$crossviewSum[$row->mailing_unique_id], 2, '.', '.').'%', "width=\"20\" style=\" border-bottom-width: 1px; border-bottom-style: solid;\""),
array(@number_format(((@$leadssum[$row->mailing_unique_id]+@$crossleadsSum[$row->mailing_unique_id])/$row->total_sent)*100, 2, '.', '.').'%', "width=\"20\" style=\" border-bottom-width: 1px; border-bottom-style: solid;\"")
);
但是当我在DataTables中显示所有数据时,那里的排序是不对的。表认为1.800小于999,但它是数千个分离器。数据是这样的:
999
888
5.656
4.655
322
2.333
122
EDIT -----------------
这是主要查询:
$query = sprintf("
SELECT stat_mailings.mailing_id, stat_mailings.cat_id, stat_mailings.mailing_name, stat_mailings.mailing_unique_id, stat_mailings.segment_id,
stat_mailings.campaign_id, stat_mailings.landing_page, stat_mailings.total_sent, pecumail_segments.segment_name, categories.category FROM `stat_mailings`
JOIN pecumail_segments ON stat_mailings.segment_id=pecumail_segments.segment_id
JOIN categories ON stat_mailings.cat_id=categories.id
这是我的代码,我打印所有数据:
$table = new datatable("100%", "border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"margin-left: auto;margin-right: auto;margin-left: -135px;\"");
$table->th("Mailing ID", "Unique id", "Mailing", "UTM campaign", "Segment", "Vezonden", "Views", "CTR", "Leads", "STL","Conversie", "Crossviews", "Crossleads","Crossconv","STLa");
$analyzedata = getAnalyze();
$leads = getLeads();
$views = getViews();
$crossviews = getCrossViews();
$crossleads = getCrossLeads();
while ($row1 = $leads->fetch_object()) {
$leadsData = count($row1->pema_mid);
@$leadssum[$row1->pema_mid] += $leadsData;
}
while ($row2 = $views->fetch_object()) {
$countedViews = count($row2->pema_mid);
@$viewSum[$row2->pema_mid] += $countedViews;
}
while ($row3 = $crossviews->fetch_object()) {
$countedCrossViews = count($row3->pema_mid);
@$crossviewSum[$row3->pema_mid] += $countedCrossViews;
}
while ($row4 = $crossleads->fetch_object()) {
$countedCrossLeads = count($row4->pema_mid);
@$crossleadsSum[$row4->pema_mid] += $countedCrossLeads;
}
while($row = $analyzedata->fetch_object()){
$totalSent = number_format($row->total_sent, 0, '.', '.');
$table->td(
array($row->mailing_id, "width=\"20\" style=\" border-bottom-width: 1px; border-bottom-style: solid;\""),
array($row->mailing_unique_id, "width=\"20\" style=\" border-bottom-width: 1px; border-bottom-style: solid;\""),
array($row->mailing_name, "width=\"300\" style=\" border-bottom-width: 1px; border-bottom-style: solid;\""),
array($row->campaign_id, "width=\"20\" style=\" border-bottom-width: 1px; border-bottom-style: solid;\""),
array($row->segment_name, "width=\"100\" style=\" border-bottom-width: 1px; border-bottom-style: solid;\""),
array($totalSent, "width=\"20\" style=\" border-bottom-width: 1px; border-bottom-style: solid;\""),
array(number_format(@$viewSum[$row->mailing_unique_id],0, '.', '.'), "width=\"20\" style=\" border-bottom-width: 1px; border-bottom-style: solid;\""),
array(@number_format((@$viewSum[$row->mailing_unique_id] * 100)/$row->total_sent, 2, '.', '.').'%', "width=\"20\" style=\" border-bottom-width: 1px; border-bottom-style: solid;\""),
array(number_format(@$leadssum[$row->mailing_unique_id],0, '.', '.'), "width=\"20\" style=\" border-bottom-width: 1px; border-bottom-style: solid;\""),
array(@number_format((@$leadssum[$row->mailing_unique_id]*100)/$row->total_sent,2, '.', '.').'%', "width=\"20\" style=\" border-bottom-width: 1px; border-bottom-style: solid;\""),
array(@number_format((@$leadssum[$row->mailing_unique_id] * 100)/@$viewSum[$row->mailing_unique_id], 2, '.', '.').'%', "width=\"20\" style=\" border-bottom-width: 1px; border-bottom-style: solid;\""),
array(number_format(@$crossviewSum[$row->mailing_unique_id],0, '.', '.'), "width=\"20\" style=\" border-bottom-width: 1px; border-bottom-style: solid;\""),
array(number_format(@$crossleadsSum[$row->mailing_unique_id],0, '.', '.'), "width=\"20\" style=\" border-bottom-width: 1px; border-bottom-style: solid;\""),
array(@number_format((@$crossleadsSum[$row->mailing_unique_id] * 100)/@$crossviewSum[$row->mailing_unique_id], 2, '.', '.').'%', "width=\"20\" style=\" border-bottom-width: 1px; border-bottom-style: solid;\""),
array(@number_format(((@$leadssum[$row->mailing_unique_id]+@$crossleadsSum[$row->mailing_unique_id])/$row->total_sent)*100, 2, '.', '.').'%', "width=\"20\" style=\" border-bottom-width: 1px; border-bottom-style: solid;\"")
);
}
echo $html = $table->getHTML();
这是我的DataTable脚本
$(document).ready(function() {
$('#example').dataTable( {
"aoColumns": [
null,
null,
null,
{ "sType": "numeric-comma" },
{ "sType": "numeric-comma" },
{ "sType": "string" },
{ "sType": "formated-num" },
{ "sType": "percent" },
{ "sType": "numeric-comma" },
{ "sType": "percent" },
{ "sType": "percent" },
{ "sType": "numeric-comma" },
{ "sType": "percent" },
{ "sType": "percent" },
null
]
} );
});
答案 0 :(得分:1)
您必须从数据库中对此进行排序。
看着你的代码while ($row1 = $leads->fetch_object()) { }
看起来像是一次从表1中抓取一个对象或行。如果它这样做,你就无法在事后对其进行排序。你要么必须从数据库中对它进行排序,要么从具有fetch_object()函数的类中对其进行排序 - 可能会循环结果并将它们创建为对象?如果该类恰好是Iterator实现,那么您只需将其作为选项从数据库中进行排序。
唯一可以在PHP中排序的方法是将值作为键并按键对数组进行排序 - 但显然,如果您有2个或更多相同的值,它们会相互覆盖,则不会起作用