mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
Unary minus (bug #28223)
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@164495 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
3471859bd5
commit
5c742d9b27
1 changed files with 7 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.75 $ -->
|
||||
<!-- $Revision: 1.76 $ -->
|
||||
<chapter id="language.operators">
|
||||
<title>Operators</title>
|
||||
<simpara>
|
||||
|
@ -62,7 +62,7 @@
|
|||
</row>
|
||||
<row>
|
||||
<entry>right</entry>
|
||||
<entry>! ~ ++ -- (int) (float) (string) (array) (object) @</entry>
|
||||
<entry>! ~ - ++ -- (int) (float) (string) (array) (object) @</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>left</entry>
|
||||
|
@ -186,6 +186,11 @@ $a = $b += 3; // $a = ($b += 3) -> $a = 5, $b = 5
|
|||
</row>
|
||||
</thead>
|
||||
<tbody>
|
||||
<row>
|
||||
<entry>-$a</entry>
|
||||
<entry>Negation</entry>
|
||||
<entry>Opposite of $a.</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>$a + $b</entry>
|
||||
<entry>Addition</entry>
|
||||
|
|
Loading…
Reference in a new issue