代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
PHP
】
PHP 大数组循环
作者:
dezai
/ 发布于
2013/12/16
/
441
<?php error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED & ~E_STRICT); class weight { private $_aItems = array(); private $_aTable = array(); private $_aDict = array(); private $_aMatchs = array(); private $_aShow = array(); function __construct() { } public function newItems($aItems){ //添加新的检索内容 if (!is_array($aItems)) $aItems = (array)$aItems; $this->_aItems = $aItems; $this->_aMatchs = array(); $this->_aShow = array(); } public function newTable($aTable){ if (!is_array($aTable)) $aTable = (array)$aTable; $this->_aTable = $aTable; $this->generateDict(); } private function generateDict() { //将字典处理成数组形式 $convert = function($value) { $value = str_replace('|', ',', $value); $value = explode(',', $value); return $value; }; $this->_aDict = array_map($convert, $this->_aTable); } public function getMatchs() { //返回对照表 return $this->_aMatchs; } public function getShow($sRule = 'debug') { /*返回格式化的结果集 * $sFormat: 指定输出格式 */ if (empty($this->_aItems)||empty($this->_aTable)) //字典源文件不存在 return false; if (empty($this->_aShow)) { /*匹配表还没有生成,自动调用相应的命令生成*/ $this->loopTable(); } $makeDumpStr = function($value, $key) use (&$dumpStr) { //生成导出文件的文本 if (count($value) >1) { foreach ($value as $valueOne) { $valueStr .= $valueOne. ','; } $dumpStr .= $this->_aItems[$key] . "\t匹配多个记录号\t". $valueStr ."\r\n"; } else { $dumpStr .= $this->_aItems[$key] . "\t匹配惟一记录号\t". $value[0] ."\r\n"; } }; switch($sRule) { case 'debug': print_r($this->_aShow); break; case 'json': return json_encode($this->_aShow); break; case 'txt': $timeExport = date("Y/M/D h:i:s"); $dumpStr = ''; $rFile = fopen('dump.txt', 'w'); array_walk($this->_aShow, $makeDumpStr); $sContent = <<<EOT ========DUMP-FILE-{$timeExport}========================= {$dumpStr} EOT; fwrite($rFile, $sContent); fclose($rFile); break; default: return $this->_aShow; break; } } private function loopTable() { //遍历 foreach ($this->_aItems as $iItemKey=> $sItemLine) { $this->matchElement($iItemKey); //print_r($this->_aMatchs); $this->match2Show($iItemKey); //print_r($this->_aShow); //echo "-----------------"; } //print_r($this->_aMatchs); //print_r($this->_aShow); } private function matchElement($iKey) { $iMax = 0; foreach ($this->_aDict as $iDictKey => $aDictLine) { foreach($aDictLine as $sDictElement) { $str = $this->_aItems[$iKey]; if(strstr($str, $sDictElement)){ //匹配到一个元素,计数器+1 ++$this->_aMatchs[$iKey]['keyring'][$iDictKey]; } } if (!$this->_aMatchs[$iKey]['keyring'][$iDictKey]) { //没有匹配到内容 $this->_aMatchs[$iKey]['keyring'][$iDictKey] = 0; } if ($iMax< $this->_aMatchs[$iKey]['keyring'][$iDictKey]) $iMax = $this->_aMatchs[$iKey]['keyring'][$iDictKey]; $this->_aMatchs[$iKey]['index'] = array( 'key' => $iDictKey, 'count' => $iMax ); } } private function match2Show($iKey) { //将对照表转化为结果集 $multiMatch = array(); //echo "ikey =". $iKey.", "; foreach ($this->_aMatchs[$iKey]['keyring'] as $iMatchKey => $iVal) { if ($iVal< $this->_aMatchs[$iKey]['index']['count']) { //这个值比最大值小 //echo "x"; continue; } else { //这个值跟最大值相等,将结果累加到记录中 //echo "y"; $multiMatch[] = $iMatchKey; } } if (count($multiMatch)> 1) //多于一条记录匹配值相同 $this->_aShow[$iKey] = $multiMatch; else //匹配值最大值唯一 $this->_aShow[$iKey] = array($this->_aMatchs[$iKey]['index']['key']); } } $aItems = array( 'chinaisbig', 'whichisnot', ..... 上万条 ..... 'totalyrightforme', ); $aTable = array( 'china,is|small', 'china,big|me', ..... 上千条 ..... 'china,is|big,wich|not,me', ); $weight = new weight(); $weight->newItems($aItems); $weight->newTable($aTable); $weight->getShow('debug'); ?>
试试其它关键字
大数组
同语言下
.
用net匹配并替换iOS标准的emoji表情符号
.
处理带Emoji表情的的字符串
.
获取微信昵称时 过滤特殊字符
.
通过判断上传文件的头字符来判断文件的类型
.
模拟百度URL加密解密算法
.
以太坊检查地址是否合法
.
实现crontab解析类
.
获取每个月的开始和结束时间
.
图片上传工具类
.
APP手机应用信息采集
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
dezai
贡献的其它代码
(
1065
)
.
双色球
.
列出所有物理网络适配器
.
快乐数的 Python 实现
.
计算当月还剩天数
.
猜属相
.
二十四小时时钟
.
每日一语
.
很酷的日历
.
超长日历表单
.
最简单的时钟
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3