Introduction to the usage of (foreach) in php
foreach ($array as $key => $value)
foreach can only be used for arrays. In each loop, the key name of the current unit will also be assigned to the variable $key in each loop. The value of the current cell is assigned to $value and the pointer inside the array is moved forward one step.
$arr=array(0=>"Hello",1=>"World",2=>"Friends");
//var_dump($arr);
foreach ($arr as $key=>$vol){
echo "This is the result of the key-value pair ".$key."----".$vol."
";
}
?>
http://www.bkjia.com/PHPjc/1065653.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1065653.htmlTechArticleIntroduction to (foreach) usage in php foreach ($array as $key = $value) foreach can only be used for arrays , in each loop, the key name of the current unit will also be assigned to the variable $key in each loop. When...
Statement: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