Delete the php code for repeated values in the array

Source: Internet
Author: User
Tags php code php tutorial rand

When $ intTotal is relatively small, for example, the value of $ intRand within 1000 basically does not affect the result, and the execution time of both is similar.

When the value of $ intTotal is greater than 10000 and $ intRand is set to 100, the efficiency of using array_unique is higher than that of foreach loop judgment. $ intRand = 10, the execution time of the two is the same.

Instance

 

<? Php Tutorial
$ ArrF = array ();
$ ArrS = array ();
$ IntTotal = 100;
$ IntRand = 10;
For ($ I = 0; $ I <$ intTotal; $ I ++)
{
$ ArrF [] = rand (1, $ intRand );
$ ArrS [] = rand (1, $ intRand );
}
$ ArrT = array_merge ($ arrF, $ arrS );
$ ArrRF = array ();
$ IntStart = time ();
Foreach ($ arrT as $ v)
{
If (in_array ($ v, $ arrRF ))
{
Continue;
}
Else
{
$ ArrRF [] = $ v;
}
}
$ IntEnd = time ();
$ IntTime = $ intEnd-$ intStart;
Echo "With Continue, Spend time: $ intTime <br/> ";
$ IntStart1 = time ();
$ ArrRS = array_unique ($ arrT );
$ IntEnd2 = time ();
$ IntTime2 = $ intEnd2-$ intStart1;
Echo "With array_unique function, Spend time :( $ intTime2 )";
Echo "<pre> ";
Print_r ($ arrT );
Print_r ($ arrRF );
Print_r ($ arrRS );
Echo "</pre> ";
?>

Therefore, it can be concluded that when the array capacity is small and it is about 1000 or less, the execution efficiency of the two is almost the same.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.