如何在数组索引中连接两个变量??? PHP

时间:2012-08-09 04:13:00

标签: php arrays

如何连接数组索引值,好像我有两个var

 $string='helloworld';

$number=1

我如何在aray值中连接它们,如$ array [$ string + $ number] = $ value(某个值变量),但它给我的结果如$ array [1] =

  $string="helloworld;
    $number=1;
    $array[$string+$number]=$value;

结果,

  $array[1]=...

我通过各种方式尝试使用,但它不起作用

希望你的建议

3 个答案:

答案 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;