你是不是在用foreach 时出现这样的错误呢?warning: invalid argument supplied for foreach()
你是不是在用foreach 时出现这样的错误呢?warning: invalid argument supplied for foreach()
语法:foreach(array as value => value2)
实例:
$Array =array(1,2,3,4);
$Temp = false;
立即学习“PHP免费学习笔记(深入)”;
foreach( $Array as $out =>$temp){
echo $temp;
}
这样就会输出1234
下面我们再来看一个foreach的实例吧。
foreach( $Trray as $out =>$temp){
echo $temp;
}
会出错:
Warning: Invalid argument supplied for foreach() in E:wwwrootshinywwwrootincludesmodulesshippingems.php on line 92
哈哈,你应该知道为什么会出现上面的错误了吧。
www.111cn.cn/phper/php.html原创转载注明
PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号