PHP Array交叉表实现代码


Posted in PHP onAugust 05, 2010

如果使用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函数解决SQL injection
Oct 09 PHP
初探PHP5
Oct 09 PHP
操作Oracle的php类
Oct 09 PHP
对淘宝URL中ID提取的PHP代码
Sep 01 PHP
PHP函数之日期时间函数date()使用详解
Sep 09 PHP
php中rename函数用法分析
Nov 15 PHP
PHP中array_slice函数用法实例详解
Nov 25 PHP
ThinkPHP5实现作业管理系统中处理学生未交作业与已交作业信息的方法
Nov 12 PHP
php数据库的增删改查 php与javascript之间的交互
Aug 31 PHP
PHP将整数数字转换为罗马数字实例分享
Mar 17 PHP
Laravel5.1 框架路由基础详解
Jan 04 PHP
swoole锁的机制代码实例讲解
Mar 04 PHP
php垃圾代码优化操作代码
Aug 05 #PHP
PHP MemCached 高级缓存应用代码
Aug 05 #PHP
phpMyAdmin 链接表的附加功能尚未激活的问题
Aug 01 #PHP
PHP合并数组+与array_merge的区别分析
Aug 01 #PHP
PHP自定义函数收代码
Aug 01 #PHP
无法在发生错误时创建会话,请检查 PHP 或网站服务器日志,并正确配置 PHP 安装最快的解决办法
Aug 01 #PHP
PHP5中使用PDO连接数据库的方法
Aug 01 #PHP
You might like
PHP array_flip() 删除重复数组元素专用函数
2010/05/16 PHP
利用PHP实现图片等比例放大和缩小的方法详解
2013/06/06 PHP
解析PHP中常见的mongodb查询操作
2013/06/20 PHP
帝国CMS留言板回复后发送EMAIL通知客户
2015/07/06 PHP
Laravle eloquent 多对多模型关联实例详解
2017/11/22 PHP
YII框架行为behaviors用法示例
2019/04/26 PHP
laravel异步监控定时调度器实例详解
2019/06/21 PHP
js解析json读取List中的实体对象示例
2014/03/11 Javascript
JS函数重载的解决方案
2014/05/13 Javascript
javascript中不提供sleep功能如何实现这个功能
2014/05/27 Javascript
javascript关于继承的用法汇总
2014/12/20 Javascript
json定义及jquery操作json的方法
2016/09/29 Javascript
vue绑定class与行间样式style详解
2017/08/16 Javascript
使用原生js+canvas实现模拟心电图的实例
2017/09/20 Javascript
vue组件间通信子与父详解(二)
2017/11/07 Javascript
js+css实现红包雨效果
2018/07/12 Javascript
解决Vue + Echarts 使用markLine标线(precision精度问题)
2020/07/20 Javascript
[46:20]TFT vs Secret Supermajor小组赛C组 BO3 第二场 6.3
2018/06/04 DOTA
Python获取系统默认字符编码的方法
2015/06/04 Python
Python实现多线程抓取妹子图
2015/08/08 Python
Python爬虫辅助利器PyQuery模块的安装使用攻略
2016/04/24 Python
python实现逻辑回归的方法示例
2017/05/02 Python
微信跳一跳python辅助软件思路及图像识别源码解析
2018/01/04 Python
使用python进行文本预处理和提取特征的实例
2018/06/05 Python
Python3中的bytes和str类型详解
2019/05/02 Python
django的模型类管理器——数据库操作的封装详解
2020/04/01 Python
python把一个字符串切开的实例方法
2020/09/27 Python
python 通过 pybind11 使用Eigen加速代码的步骤
2020/12/07 Python
matplotlib绘制正余弦曲线图的实现
2021/02/22 Python
html5 canvas实现跟随鼠标旋转的箭头
2016/03/11 HTML / CSS
HTML5中input输入框默认提示文字向左向右移动的示例代码
2020/09/10 HTML / CSS
C#实现启动一个进程
2016/10/01 面试题
成功的餐厅经营创业计划书
2014/01/15 职场文书
画展邀请函
2015/01/31 职场文书
2015年派出所工作总结
2015/04/24 职场文书
征求意见函
2015/06/05 职场文书