当前位置:网站首页>Usage of PHP interview questions foreach ($arr as $value) and foreach ($arr as $value)
Usage of PHP interview questions foreach ($arr as $value) and foreach ($arr as $value)
2022-07-07 18:24:00 【Southern Song Dynasty x】
Interview questions :
<?php
$arr = [0,1,2,3,4];
foreach ($arr as &$val) {
// nothing
}
foreach ($arr as $val) {
// nothing
}
// What will be output
var_export($arr);
/********* ** answer :** *********/
array (
0 => 1,
1 => 2,
2 => 3,
3 => 8,
4 => 'a',
5 => 'a',
)
For detailed explanation, please refer to :
https://blog.csdn.net/smxdgf/article/details/105370166
边栏推荐
- Machine vision (1) - Overview
- 『HarmonyOS』DevEco的下载安装与开发环境搭建
- DataSimba推出微信小程序,DataNuza接受全场景考验? | StartDT Hackathon
- Tear the Nacos source code by hand (tear the client source code first)
- debian10系统问题总结
- Slider plug-in for swiper left and right switching
- Backup Alibaba cloud instance OSS browser
- [trusted computing] Lesson 12: TPM authorization and conversation
- 嵌入式C语言程序调试和宏使用的技巧
- 科学家首次观察到“电子漩涡” 有助于设计出更高效的电子产品
猜你喜欢
debian10系统问题总结
Management by objectives [14 of management]
Target detection 1 -- actual operation of Yolo data annotation and script for converting XML to TXT file
讨论 | AR 应用落地前,要做好哪些准备?
[principle and technology of network attack and Defense] Chapter 6: Trojan horse
Some key points in the analysis of spot Silver
Mobile app takeout ordering personal center page
Five network IO models
debian10编译安装mysql
Kirk Borne的本周学习资源精选【点击标题直接下载】
随机推荐
【C语言】字符串函数
Debian10 compile and install MySQL
“解密”华为机器视觉军团:华为向上,产业向前
[answer] if the app is in the foreground, the activity will not be recycled?
简单几步教你如何看k线图图解
Using stored procedures, timers, triggers to solve data analysis problems
Backup Alibaba cloud instance OSS browser
Personal best practice demo sharing of enum + validation
Discuss | what preparations should be made before ar application is launched?
[4500 word summary] a complete set of skills that a software testing engineer needs to master
Main work of digital transformation
数学分析_笔记_第11章:Fourier级数
What are the financial products in 2022? What are suitable for beginners?
PHP面试题 foreach($arr as &$value)与foreach($arr as $value)的用法
SD_DATA_RECEIVE_SHIFT_REGISTER
『HarmonyOS』DevEco的下载安装与开发环境搭建
[principle and technology of network attack and Defense] Chapter 6: Trojan horse
[principles and technologies of network attack and Defense] Chapter 5: denial of service attack
Discuss | frankly, why is it difficult to implement industrial AR applications?
【demo】循环队列及条件锁实现goroutine间的通信