天天躁日日躁狠狠躁AV麻豆-天天躁人人躁人人躁狂躁-天天澡夜夜澡人人澡-天天影视香色欲综合网-国产成人女人在线视频观看-国产成人女人视频在线观看

PHP Array交叉表實現代碼

如果使用sql語句做的話 工作量太大了,于是嘗試自己寫一個交叉表的類,好二話不說,我們看看代碼
復制代碼 代碼如下:
/**
* 基本交叉表
* @author hugh
*
*/
class Pivot
{
private $HORIZONTAL_TOTAL_FIELD = 'total';
private $VERTICAL_TOTAL_FIELD = 'total';
private $data;
private $topPivot;
private $leftPivot;
private $measure;
private $horizontalColumn = array ();
private $verticalColumn = array ();
private $pivotValue = array ();
private $isHorizontalTotal = true;
private $isVerticalTotal = true;
private $horizontalTotal = null;
private $verticalTotal = null;
private $title = 'PivotTab';
/**
* 初始化交叉表
*/
private function InitPivot()
{
$this->topPivot;
foreach ( $this->data as $d )
{
$this->horizontalColumn [] = $d [$this->leftPivot];
$this->verticalColumn [] = $d [$this->topPivot];
}
$this->horizontalColumn = array_unique ( $this->horizontalColumn );
$this->verticalColumn = array_unique ( $this->verticalColumn );
$reasult = array ();
foreach ( $this->horizontalColumn as $h )
{
foreach ( $this->verticalColumn as $v )
{
$this->pivotValue [$h] [$v] = 0;
}
}
}
/**
* 填充數據
*/
private function fillData()
{
foreach ( $this->data as $row )
{
$this->pivotValue [$row [$this->leftPivot]] [$row [$this->topPivot]] += $row [$this->measure];
}
if ($this->isHorizontalTotal)
{
$this->setHorizontalTotal ();
}
if ($this->isVerticalTotal)
{
$this->setVerticalTotal ();
}
}
/**
* 設置縱向合計
*/
private function setVerticalTotal()
{
$this->verticalColumn [] = $this->VERTICAL_TOTAL_FIELD;
foreach ( $this->horizontalColumn as $i )
{
$rowsum = 0;
foreach ( $this->verticalColumn as $j )
{
$rowsum += $this->pivotValue [$i] [$j];
}
$this->pivotValue [$i] [$this->TOTAL_FIELD] = $rowsum;
}
}
/**
* 設置橫向合計
*/
private function setHorizontalTotal()
{
$this->horizontalColumn [] = $this->HORIZONTAL_TOTAL_FIELD;
foreach ( $this->verticalColumn as $i )
{
$rowsum = 0;
foreach ( $this->horizontalColumn as $j )
{
$rowsum += $this->pivotValue [$j] [$i];
}
$this->pivotValue [$this->HORIZONTAL_TOTAL_FIELD] [$i] = $rowsum;
}
}
/**
* 渲染
*/
function Render()
{
echo '<pre>';
print_r ( $this->pivotValue );
}
/**
* 渲染為table
*/
function RenderToTable()
{
$resault = "<table border='1' width='250'>/n";
$resault .= "<tr><td>$this->title</td>/n";
foreach ( $this->verticalColumn as $value )
{
$resault .= "<td>$value</td>/n";
}
$resault .= "</tr>/n";
foreach ( $this->horizontalColumn as $i )
{
$resault .= "<tr><td>$i</td>/n";
foreach ( $this->pivotValue [$i] as $value )
{
$resault .= "<td>$value</td>/n";
}
$resault .= "</tr>/n";
}
$resault .= "</table>";
return $resault;
}
/**
* 構造交叉表
* @param $data 數據源
* @param $topPivot 頭欄目字段
* @param $leftPivot 左欄目字段
* @param $measure 計算量
*/
function __construct(array $data, $topPivot, $leftPivot, $measure)
{
$this->data = $data;
$this->leftPivot = $leftPivot;
$this->topPivot = $topPivot;
$this->measure = $measure;
$this->horizontalColumn = array ();
$this->verticalColumn = array ();
$this->InitPivot ();
$this->fillData ();
}
}

重點在于InitPivot方法及fillData方法。
InitPivot里面保證了所有的item都會有值(默認為0)
fillData方法使用選擇填充添加的方法,將數據填充入我們裝數據的$pivotValue里面。

然后喜歡怎么輸出都可以了

php技術PHP Array交叉表實現代碼,轉載需保留來源!

鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯系我們修改或刪除,多謝。

主站蜘蛛池模板: 亚洲日韩国产精品乱-久 | 亚洲综合国产精品 | 久久才是精品亚洲国产 | 20岁αsrian男同志免费 | 好男人好资源在线观看 | 久久精品午夜一区二区福利 | 日夜啪啪一区二区三区 | 97国产成人精品视频 | 国产短视频精品区 | 狂躁美女BBBBBB视频 | 野花香在线观看免费高清播放视频 | 国产三级在线免费 | 吃春药后的女教师 | 老太脱裤子让老头玩xxxxx | 国产一区二区不卡老阿姨 | 久久视频精品3线视频在线观看 | 中文字幕亚洲无限码 | 精品国产午夜福利在线观看蜜月 | 美女不要啊 | 伊人网综合在线观看 | 扒开老师粉嫩的泬10P | 护士美女照片 | 精品国产乱码久久久久久上海公司 | 国产免费69成人精品视频 | 伊人影院久久 | 久久青青无码AV亚洲黑人 | 国产亚洲欧美在线中文BT天堂网 | 中文字幕网站在线观看 | 国产69精品久久久熟女 | 精品久久久久久久高清 | 亚洲午夜精品AV无码少妇 | 内射人妻无码色AV麻豆去百度搜 | 热久久视久久精品2015 | 日韩人妻双飞无码精品久久 | 美女网站免费久久久久久久 | 影音先锋av电影 | 99热久久久无码国产精品性麻豆 | 国产成人一区免费观看 | xxx军人3p大gay | 一边摸一边桶一边脱免费 | 亚洲精品AV无码重口另类 |