codeigniter什么是=>

What is => in codeigniter

只是个简单的问题

在这个例子中,=>做什么?如何阅读?

它是由"is to"还是"is equal"读的?

1
2
3
4
5
6
$array = array(
    'color' => 'red',
    'shape' => 'round',
    'radius' => '10',
    'diameter' => '20'
);


它不是is tois equal,但符号=>是一个赋值运算符,用于在数组的索引中赋值。

例如:

1
2
3
4
$x[0] = 10;
$x[1] = 20;
$x[2] = 30;
$x[3] = 40;

1
2
3
4
5
$x = (0 => 10,
      1 => 20,
      2 => 30,
      3 => 40,
    );

=>在php数组中分隔键和值对。它与点火器无关。从这个链接可以看到关于php数组的更多细节。