欢迎访问 生活随笔!

生活随笔

当前位置: 首页 > 编程语言 > php >内容正文

php

php 循环大数组 卡死,PHP 大数组循环问题_PHP教程

发布时间:2025/3/11 php 38 豆豆
生活随笔 收集整理的这篇文章主要介绍了 php 循环大数组 卡死,PHP 大数组循环问题_PHP教程 小编觉得挺不错的,现在分享给大家,帮大家做个参考.

小妹刚刚改投PHP门下。领导叫我把这段代码的执行效率优化一下

我现在知道的优化就是小循环外面,好像在这没啥用。

请问各位大侠我该怎么优化ne ? 领导说放内存里什么的。

基本就是2个大数组不停的循环算权重。

_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 ."rn";

} else {

$dumpStr .= $this->_aItems[$key] . "t匹配惟一记录号t". $value[0] ."rn";

}

};

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 = <<_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_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_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');

?>

www.bkjia.comtrueTechArticle小妹刚刚改投PHP门下。领导叫我把这段代码的执行效率优化一下 我现在知道的优化就是小循环外面,好像在这没啥用。 请问各位大侠我该…

总结

以上是生活随笔为你收集整理的php 循环大数组 卡死,PHP 大数组循环问题_PHP教程的全部内容,希望文章能够帮你解决所遇到的问题。

如果觉得生活随笔网站内容还不错,欢迎将生活随笔推荐给好友。