fixed #71902 (Invalid precedence order of => (T_DOUBLE_ARROW) operator)

Actually, T_DOUBLE_ARROW isn't an operator.

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@338859 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Christoph Michael Becker 2016-03-31 16:06:29 +00:00
parent e1ff080a51
commit acc7076441

View file

@ -250,7 +250,6 @@
<literal>^=</literal>
<literal>&lt;&lt;=</literal>
<literal>&gt;&gt;=</literal>
<literal>=&gt;</literal>
</entry>
<entry>
<link linkend="language.operators.assignment">assignment</link>
@ -451,11 +450,6 @@ $a = ($b = 4) + 5; // $a is equal to 9 now, and $b has been set to 4.
</programlisting>
</informalexample>
</para>
<para>
For <type>arrays</type>, assigning a value to a named key is performed using
the "=&gt;" operator. The <link linkend="language.operators.precedence">precedence</link>
of this operator is the same as other assignment operators.
</para>
<para>
In addition to the basic assignment operator, there are "combined
operators" for all of the <link linkend="language.operators">binary