PHP arrays are quite commonly used, so I studied the PHP array loop operation and shared it with you here. I hope it will be useful to everyone. PHP is basically an array language. We often need to perform a large number of PHP array loop operations. There are two main methods, one is foreach and the other is while. There has been debate on which one is better and which one is worse. Although I have been aware of this problem for a long time, I have always been Without going into details, the feeling of ignorance continues until now. In order to save some CPU time in the future, let’s summarize it below:
What is done in the loop is the array "read" operation, so foreach is faster than while, PHP array loop Operation unformatted view copy to clipboard print code?
Summary: It is generally believed that foreach involves value copying and will be slower than while, but in fact, if you only read the array in a loop, then foreach is very fast. This is because the copying mechanism used by PHP is "Copy by reference, copy on write", from this point of view, the efficient read operation of foreach is not difficult to understand. In addition, since foreach is not suitable for processing array write operations, we can draw a conclusion that in most cases, code in the form of foreach($arrayas$key=>$value) should be replaced by while(list($key )=each($array)).
The speed difference produced by these techniques may not be obvious in small projects, but in large projects like frameworks, a single request will often involve hundreds, thousands, or tens of thousands of array loop operations. The difference is will be significantly enlarged.
Small examples of PHP arrays and loops, including two-dimensional arrays, Yang Hui triangles, obtaining parameters, and summing rectangular diagonals. Friends in need are recommended to take a look
Copy code The code is as follows:
//1. Use a loop statement to output any two dimensional array. $arr=array( array(1,2,3,4), array(5,6,7,8), array(9,10,11,12), array(13,14,15,16) ); foreach ($arr as $var){ foreach ($var as $val1){ echo "$val1 " ; } echo " "; } echo " "; ///2. Use loop control statements to output Yang Hui triangle. function yanghuisanjiao($line){ $sc[][]=array(); $sc[0][0]=1; for($i=1;$i< ;=$line;$i++){ for($j=0;$j<=$i;$j++){ if($j==0 or $i==$j){ $sc[$i][$j]=1; //Set the first and last numbers of each row to 1 }else{ $sc[$i][$j ]=$sc[$i-1][$j-1]+$sc[$i-1][$j]; } } } foreach ($sc as $value){ foreach($value as $v1){ echo $v1.' '; } echo '
'; } } yanghuisanjiao(5); echo " "; ///3. Use loops and predefined variables to obtain multiple parameters. The number of parameters is undetermined. function avg(){ $ags=func_get_args(); $sum=0; foreach ($ags as $v){ $sum+=$v; } return 'The average is:'.$sum/func_num_args(); } echo avg(1,2,3,4,5,6,7);
///4. Use a loop to output a two-dimensional array and find the sum of the diagonal elements of the rectangle. function getSum($theCount){ $b=0; echo '
"; echo "The sum of the diagonal elements is:".$b; } getSum(6); ?>
http://www.bkjia.com/PHPjc/326468.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/326468.htmlTechArticlePHP arrays are quite commonly used, so I studied the PHP array loop operation and shared it with you here. Here's a look, hope it's useful to everyone. PHP is basically an array language...
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals.
This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati
If you are an experienced PHP developer, you might have the feeling that you’ve been there and done that already.You have developed a significant number of applications, debugged millions of lines of code, and tweaked a bunch of scripts to achieve op
Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems.
With a large collection of extensions for many programming languages, VS Code can be c
JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,
This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an
A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase.
What is a vowel?
Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase:
a, e, i, o, u
Example 1
Input: String = "Tutorialspoint"
Output: 6
explain
The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total
Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.
What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.