简单的PHP解释..箭头操作符之间有什么区别?

Hea*_*Way 3 php

我不熟悉这两个运营商之间的确切差异:

->
Run Code Online (Sandbox Code Playgroud)

=>
Run Code Online (Sandbox Code Playgroud)

有很多不同之处吗?一个分配一个数组,另一个只是重命名或其他东西?

Asc*_*rer 6

->是一个方法调用或属性调用操作符,=>是一个数组赋值运算符

$foo = new Bar();
$foo->test();
// or even
$foo->bar = 'baz';

// vs 

$foo = array(
    'bar' => 'test'
);

// And wrapping it all together!!!
$foo = new Bar();
$foo->baz = array( 'bar' => 'baz' );
Run Code Online (Sandbox Code Playgroud)