


Differences and performance comparison between foreach and while loops
foreach and while both loop in php, so what is the difference between foreach and while loop? Which one will have better performance? Let me introduce to you the difference between foreach and while loop. Performance comparison.
In a while loop, Perl will read a line of input, store it in a variable and execute the loop body. Then, it goes back to find other input lines.
In the foreach loop, the entire line of input operator will be executed in the list context (because foreach needs to process the contents of the list line by line). Before the loop can start executing, it must read all the input.
When inputting large-capacity files, using foreach will occupy a lot of memory. The difference between the two will be very obvious. Therefore, the best approach is usually to use the abbreviation of while loop and let it process one line at a time.
When you want to repeatedly execute certain statements or paragraphs, C# provides 4 different loop statement options for you to use according to different current tasks:
. for statement
. foreach statement
. while statement
. do statement
1.for
The for statement is particularly useful when you know in advance how many times an contained statement should be executed. The regular syntax allows an enclosed statement (and loop expression) to be executed repeatedly when a condition is true:
for (initialization; condition; loop) enclosed statement
Please note that initialization, conditions and loops are optional. If you omit the condition, you can create an infinite loop that requires a jump statement (break or goto) to exit.
for (;;) { break; // 由于某些原因 }
Another important point is that you can add multiple comma-separated statements to all three parameters of the for loop at the same time. For example, you can initialize two variables, have three conditionals, and repeat 4 variables.
2.foreach
One feature that has existed in the Visual Basic language for a long time is the collection of enumerations by using the For Each statement. C# also has a command for collecting enumerations through the foreach statement:
foreach (type identifier in expression) containing statement
The loop variable is declared by the type and identifier, and Expressions correspond to collections. The loop variable represents the collection element for which the loop is running.
3.while
When you want to execute an included statement 0 or more times, the while statement is exactly what you want:
while (condition) INCLUDED STATEMENT
The conditional statement - which is also a Boolean expression - controls the number of times the included statement is executed. You can use break and continue statements to control the execution of statements in a while statement, which operates in exactly the same way as in a for statement.
4,do
C#The last available loop statement is the do statement. It is very similar to a while statement in that the condition is verified only after the initial loop.
do { 内含语句 } while (条件);
The do statement guarantees that the contained statements have been executed at least once, and they continue to be executed as long as the condition evaluates to true. By using the break statement, you can force execution to exit the do block. If you want to skip this loop, use the continue statement.
Performance comparison
foreach operates on a copy of the array (by copying the array), while while operates by moving the internal index of the array. Under general logic, it is believed that while should be faster than foreach (because foreach first copies the array when it starts executing, while while directly moves the internal pointer), but the result is just the opposite.
In the loop, the array "read" operation is performed, so foreach is faster than while:
foreach ($array as $value) { echo $value; } while (list($key) = each($array)) { echo $array[$key]; }
In the loop, the array "write" operation is performed, then while is faster than foreach:
foreach ($array as $key => $value) { echo $array[$key] = $value . '...'; } while (list($key) = each($array)) { $array[$key] = $array[$key] . '...'; }
Let us first test the time it takes to traverse a one-dimensional array with 50,000 subscripts:
<?php /* * @ Author: Lilov * @ Homepage: www.111cn.net * @ E-mail: zhongjiechao@gmail.com * */ $arr = array(); for($i = 0; $i < 50000; $i++){ $arr[] = $i*rand(1000,9999); } function GetRunTime() { list($usec,$sec)=exp lode(" ",microtime()); return ((float)$usec+(float)$sec); } ###################################### $time_start = GetRunTime(); for($i = 0; $i < count($arr); $i++){ $str .= $arr[$i]; } $time_end = GetRunTime(); $time_used = $time_end - $time_start; echo 'Used time of for:'.round($time_used, 7).'(s)<br><br>'; unset($str, $time_start, $time_end, $time_used); ###################################### $time_start = GetRunTime(); while(list($key, $val) = each($arr)){ $str .= $val; } $time_end = GetRunTime(); $time_used = $time_end - $time_start; echo 'Used time of while:'.round($time_used, 7).'(s)<br><br>'; unset($str, $key, $val, $time_start, $time_end, $time_used); ###################################### $time_start = GetRunTime(); foreach($arr as $key => $val){ $str .= $val; } $time_end = GetRunTime(); $time_used = $time_end - $time_start; echo 'Used time of foreach:'.round($time_used, 7).'(s)<br><br>'; ###################################### ?>
Test results:
will be three times Average the test results:
corresponds to for, while, and foreach respectively
0.1311650
0.1666853
0.1237440
After repeated tests, the results show that for traversing the same array, foreach The fastest one is while. The slowest one is while. foreach is about 20% ~ 30% faster than while. Then add the array subscript to 500000 and 5000000 and the test result is the same. But from a principle point of view, foreach operates on a copy of the array (by copying the array), while while operates by moving the internal index of the array. Generally speaking, it is believed that while should be faster than foreach (because foreach first executes the The array is copied in, while while moves the internal pointer directly), but the result is just the opposite. The reason should be that foreach is an internal implementation of PHP, while while is a general loop structure.
The above is the detailed content of Differences and performance comparison between foreach and while loops. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics











Export password-protected PDF in Photoshop: Open the image file. Click "File"> "Export"> "Export as PDF". Set the "Security" option and enter the same password twice. Click "Export" to generate a PDF file.

H5. The main difference between mini programs and APP is: technical architecture: H5 is based on web technology, and mini programs and APP are independent applications. Experience and functions: H5 is light and easy to use, with limited functions; mini programs are lightweight and have good interactiveness; APPs are powerful and have smooth experience. Compatibility: H5 is cross-platform compatible, applets and APPs are restricted by the platform. Development cost: H5 has low development cost, medium mini programs, and highest APP. Applicable scenarios: H5 is suitable for information display, applets are suitable for lightweight applications, and APPs are suitable for complex functions.

The necessity of registering VueRouter in the index.js file under the router folder When developing Vue applications, you often encounter problems with routing configuration. Special...

The key differences between CentOS and Ubuntu are: origin (CentOS originates from Red Hat, for enterprises; Ubuntu originates from Debian, for individuals), package management (CentOS uses yum, focusing on stability; Ubuntu uses apt, for high update frequency), support cycle (CentOS provides 10 years of support, Ubuntu provides 5 years of LTS support), community support (CentOS focuses on stability, Ubuntu provides a wide range of tutorials and documents), uses (CentOS is biased towards servers, Ubuntu is suitable for servers and desktops), other differences include installation simplicity (CentOS is thin)

不同数据库系统添加列的语法为:MySQL:ALTER TABLE table_name ADD column_name data_type;PostgreSQL:ALTER TABLE table_name ADD COLUMN column_name data_type;Oracle:ALTER TABLE table_name ADD (column_name data_type);SQL Server:ALTER TABLE table_name ADD column_name data_

Detailed explanation of XPath search method under DOM nodes In JavaScript, we often need to find specific nodes from the DOM tree based on XPath expressions. If you need to...

There are differences in the promotion methods of H5 and mini programs: platform dependence: H5 depends on the browser, and mini programs rely on specific platforms (such as WeChat). User experience: The H5 experience is poor, and the mini program provides a smooth experience similar to native applications. Communication method: H5 is spread through links, and mini programs are shared or searched through the platform. H5 promotion methods: social sharing, email marketing, QR code, SEO, paid advertising. Mini program promotion methods: platform promotion, social sharing, offline promotion, ASO, cooperation with other platforms.

The C language function library is a toolbox containing various functions, which are organized in different library files. Adding a library requires specifying it through the compiler's command line options, for example, the GCC compiler uses the -l option followed by the abbreviation of the library name. If the library file is not under the default search path, you need to use the -L option to specify the library file path. Library can be divided into static libraries and dynamic libraries. Static libraries are directly linked to the program at compile time, while dynamic libraries are loaded at runtime.
