什么是=>在codeigniter

时间:2017-12-11 03:53:19

标签: codeigniter

只是一个简单的问题

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

是“是”还是“等于”

$array = array(
    'color' => 'red',
    'shape' => 'round',
    'radius' => '10',
    'diameter' => '20'
);

2 个答案:

答案 0 :(得分:1)

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

例如:

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

或者

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

答案 1 :(得分:0)

=>分隔PHP数组中的键和值对。它与Codeigniter无关。从link查看有关PHP数组的更多详细信息。