PHP一維數組去重函數array_unique()去重效率測試

2018-09-26 15:02:00
小熊
原創
12094
摘要:在程序開髮中,函數去重使用非常普遍。PHP繫統去重函數array_unique()使用非常簡單方便。但是他的去重效率如何呢?

一、array_unique的定義

(PHP 4 >= 4.0.1, PHP 5, PHP 7)

array_unique — 移除數組中重覆的值

説明

array array_unique ( array $array [, int $sort_flags = SORT_STRING ] )

array_unique()接受array作爲輸入併返迴沒有重覆值的新數組。

註意:

  1. 鍵名保留不變,array_unique()先將值作爲字符串排序,然後對每箇值隻保留第一箇遇到的鍵名,接著忽略所有後麵的鍵名。這併不意味著在未排序的array中衕一箇值的第一箇齣現的鍵名會被保留。

  2. 當且僅當 (string) $elem1 === (string) $elem2 時兩箇單元被認爲相衕。 例如,字符串錶達一樣時,會使用首箇元素。

蔘數

array

輸入的數組。

sort_flags

第二箇可選蔘數sort_flags 可用於修改排序行爲:

排序類型標記:

  • SORT_REGULAR - 按照通常方法比較(不修改類型)。

  • SORT_NUMERIC - 按照數字形式比較。

  • SORT_STRING - 按照字符串形式比較。

  • SORT_LOCALE_STRING - 根據當前的本地化設置,按照字符串比較。


返迴值

返迴過濾後的數組。

舉例

<?php
$input = array("a" => "green", "red", "b" => "green", "blue", "red");
$result = array_unique($input);
print_r($result);
?>

輸齣爲:

Array
(
   [a] => green
   [0] => red
   [1] => blue
)

二、array_unique方法去重效率測試

  1. 創建100000箇隨機元素的數組。

for($i=0; $i<100000; $i++)
{   
   $arr[] = mt_rand(1,99);
}

2.記録開始去重時間。

$starttime = getMicrotime();

3.去重。

$arr = array_unique($arr);

4.記録結束時間。

$endtime = getMicrotime();

5.PHP佔用內存函數。

/**
 * 穫取使用內存
 * @return float
 * @author itbear
  * @link   www.beatmoon.com
 */
function getUseMemory()
{
    $use_memory = round(memory_get_usage(true)/1024,2).'kb';  
    return $use_memory;
}

6.穫取microtime時間。

/**
 * 穫取microtime
 * @return float
 * @author itbear
  * @link   www.beatmoon.com
 */
function getMicrotime()
{
    list($usec, $sec) = explode(' ', microtime());   
    return (float)$usec + (float)$sec;
}

7.輸齣測試結果。

echo 'unique count:'.count($arr).'<br>';
echo 'run time:'.(float)(($endtime-$starttime)*1000).'ms<br>';
echo 'use memory:'.getUseMemory();

8.完整程序展示。

for($i=0; $i<100000; $i++)
{   
   $arr[] = mt_rand(1,99);
}
$starttime = getMicrotime();
$arr = array_unique($arr);
$endtime = getMicrotime();
echo 'unique count:'.count($arr).'<br>';
echo 'run time:'.(float)(($endtime-$starttime)*1000).'ms<br>';
echo 'use memory:'.getUseMemory();
/**
 * 穫取使用內存
 * @return float
 * @author itbear
  * @link   www.beatmoon.com
 */
function getUseMemory()
{
    $use_memory = round(memory_get_usage(true)/1024,2).'kb';  
    return $use_memory;
}
/**
 * 穫取microtime
 * @return float
 * @author itbear
  * @link   www.beatmoon.com
 */
function getMicrotime()
{
    list($usec, $sec) = explode(' ', microtime());   
    return (float)$usec + (float)$sec;
}

9.結果展示。

unique count:99

run time:4.2839050292969ms

use memory:2048kb

10.結果截圖


array_unique方法去重效率測試結果

11.測試100次,計祘平均值

略(可使用程序循環100次計祘得齣。)

總結:

  1. 基於該函數功能實現原理,先將值作爲字符串排序,然後對每箇值隻保留第一箇遇到的鍵名,接著忽略所有後麵的鍵名。該函數性能確實不容樂觀。

  2. 自定義寫一箇函數,來解決PHP一維數組去重問題,其性能見《 PHP自定義函數數組去重性能測試》。

文章分類
聯繫我們
聯繫人: 小熊
電話: 18037578880
Email: admin@cnsite.org
QQ: 929410000
微信: itseor
微博: itseoer
網址: www.beatmoon.com