本文介绍了无法将标量值用作数组的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试以下代码:
$rescntryvals[] = $rescntry;
$rescntry = "";
$resclkvalscntry[] = $rclick;
$rclick = "";
$resclkaddsnm[] = $addsnmame;
$addsnmame = "";
但是我明白了:
为什么?那么解决方案是什么?
Why? And what is the solution?
推荐答案
您必须先将$rescntryvals
声明为数组.默认情况下,在定义变量之前,所有变量的类型均为null
(未定义).
You have to declare $rescntryvals
as array before. Per default all variables are of type null
(undefined) until you define them.
$rescntryvals = array();
$rescntryvals[]=$rescntry;
这篇关于无法将标量值用作数组的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!