如何连接数组索引值,好像我有两个var
$string='helloworld';
和
$number=1
我如何在aray值中连接它们,如$ array [$ string + $ number] = $ value(某个值变量),但它给我的结果如$ array [1] =
$string="helloworld;
$number=1;
$array[$string+$number]=$value;
结果,
$array[1]=...
我通过各种方式尝试使用,但它不起作用
希望你的建议
答案 0 :(得分:3)
+
添加了数字。 .
连接字符串。
echo "Hello " . "world!";
答案 1 :(得分:0)
Chaeck出来
$string="helloworld"; // missing closing "
$number=1;
$array[$string . $number]=$value; // replace + with . for concatination
答案 2 :(得分:0)
合并以上两个答案......
$string="helloworld";
$number=1;
$array[$string . $number]=$value;