File: lang-expr.sgml

package info (click to toggle)
php3 1%3A3.0.5-3
  • links: PTS
  • area: main
  • in suites: slink
  • size: 8,348 kB
  • ctags: 9,086
  • sloc: ansic: 76,362; sh: 2,333; php: 1,329; yacc: 1,148; makefile: 970; perl: 763; cpp: 529; awk: 90; sql: 11
file content (267 lines) | stat: -rw-r--r-- 7,334 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
 <chapter id="lang-expr">
  <title>Expressions</title>
  <simpara></simpara>
  
  <sect1 id="operators">
   <title>Operators</title>
   <simpara>
   </simpara>

   <sect2 id="arithmetic-operators">
    <title>Arithmetic Operators</title>
    <simpara>
     Remember basic arithmetic from school? These work just
     like those.
    </simpara>

    <table>
     <title>Arithmetic Operators</title>
     <tgroup cols="3">
      <thead>
       <row>
        <entry>example</entry>
        <entry>name</entry>
        <entry>result</entry>
       </row>
      </thead>
      <tbody>
       <row>
        <entry>$a + $b</entry>
        <entry>Addition</entry>
        <entry>Sum of $a and $b.</entry>
       </row>
       <row>
        <entry>$a - $b</entry>
        <entry>Subtraction</entry>
        <entry>Remainder of $b subtracted from $a.</entry>
       </row>
       <row>
        <entry>$a * $b</entry>
        <entry>Multiplication</entry>
        <entry>Product of $a and $b.</entry>
       </row>
       <row>
        <entry>$a / $b</entry>
        <entry>Division</entry>
        <entry>Dividend of $a and $b.</entry>
       </row>
       <row>
        <entry>$a % $b</entry>
        <entry>Modulus</entry>
        <entry>Remainder of $a divided by $b.</entry>
       </row>
      </tbody>
     </tgroup>
    </table>

    <simpara>
     The division operator ("/") returns an integer value (the result
     of an integer division) if the two operands are integers (or
     strings that get converted to integers). If either operand is a
     floating-point value, floating-point division is performed.
    </simpara>

   <sect2 id="string-operators">
    <title>String Operators</title>
    <simpara>
     There is only really one string operator -- the concatenation
     operator (".").
    </simpara>
    <para>
     <informalexample><programlisting>
$a = "Hello ";
$b = $a . "World!"; // now $b = "Hello World!"
     </programlisting></informalexample>
    </para>

   <sect2 id="assignment-operators">
    <title>Assignment Operators</title>
    <simpara>
     The basic assignment operator is "=". Your first inclination might
     be to think of this as "equal to". Don't. It really means that
     the the left operand gets set to the value of the expression on the
     rights (that is, "gets set to").
    </simpara>
    <para>
     The value of an assignment expression is the value assigned. That
     is, the value of "$a = 3" is 3. This allows you to do some tricky
     things: <informalexample><programlisting>
$a = ($b = 4) + 5; // $a is equal to 9 now, and $b has been set to 4.
</programlisting></informalexample>
    </para>
    <para>
     In addition to the basic assignment operator, there are "combined
     operators" for all of the binary arithmetic and string operators
     that allow you to use a value in an expression and then set its
     value to the result of that expression. For example: <informalexample><programlisting>
$a = 3;
$a += 5; // sets $a to 8, as if we had said: $a = $a + 5;
$b = "Hello ";
$b .= "There!"; // sets $b to "Hello There!", just like $b = $b . "There!";
</programlisting></informalexample>
    </para>

   <sect2 id="bitwise-operators">
    <title>Bitwise Operators</title>
    <simpara>
     Bitwise operators allow you to turn specific bits within an integer
     on or off.
    </simpara>

    <table>
     <title>Bitwise Operators</title>
     <tgroup cols="3">
      <thead>
       <row>
        <entry>example</entry>
        <entry>name</entry>
        <entry>result</entry>
       </row>
      </thead>
      <tbody>
       <row>
        <entry>$a & $b</entry>
        <entry>And</entry>
        <entry>Bits that are set in both $a and $b are set.</entry>
       </row>
       <row>
        <entry>$a | $b</entry>
        <entry>Or</entry>
        <entry>Bits that are set in either $a or $b are set.</entry>
       </row>
       <row>
        <entry>~ $a</entry>
        <entry>Not</entry>
        <entry>Bits that are set in $a are not set, and vice versa.</entry>
       </row>
      </tbody>
     </tgroup>
    </table>

   <sect2 id="logical-operators">
    <title>Logical Operators</title>

    <table>
     <title>Logical Operators</title>
     <tgroup cols="3">
      <thead>
       <row>
        <entry>example</entry>
        <entry>name</entry>
        <entry>result</entry>
       </row>
      </thead>
      <tbody>
       <row>
        <entry>$a and $b</entry>
        <entry>And</entry>
        <entry>True of both $a and $b are true.</entry>
       </row>
       <row>
        <entry>$a or $b</entry>
        <entry>Or</entry>
        <entry>True if either $a or $b is true.</entry>
       </row>
       <row>
        <entry>$a xor $b</entry>
        <entry>Or</entry>
        <entry>True if either $a or $b is true, but not both.</entry>
       </row>
       <row>
        <entry>! $a</entry>
        <entry>Not</entry>
        <entry>True if $a is not true.</entry>
       </row>
       <row>
        <entry>$a && $b</entry>
        <entry>And</entry>
        <entry>True of both $a and $b are true.</entry>
       </row>
       <row>
        <entry>$a || $b</entry>
        <entry>Or</entry>
        <entry>True if either $a or $b is true.</entry>
       </row>
      </tbody>
     </tgroup>
    </table>

    <simpara>
     The reason for the two different variations of "and" and "or"
     operators is that they operate at different precedences. (See below.)
    </simpara>

   <sect2 id="comparison-operators">
    <title>Comparison Operators</title>
    <simpara>
     Comparison operators, as their name imply, allow you to compare two
     values.
    </simpara>

    <table>
     <title>Comparson Operators</title>
     <tgroup cols="3">
      <thead>
       <row>
        <entry>example</entry>
        <entry>name</entry>
        <entry>result</entry>
       </row>
      </thead>
      <tbody>
       <row>
        <entry>$a == $b</entry>
        <entry>Equal</entry>
        <entry>True if $a is equal to $b.</entry>
       </row>
       <row>
        <entry>$a != $b</entry>
        <entry>Not equal</entry>
        <entry>True if $a is not equal to $b.</entry>
       </row>
       <row>
        <entry>$a &lt; $b</entry>
        <entry>Less than</entry>
        <entry>True if $a is strictly less than $b.</entry>
       </row>
       <row>
        <entry>$a &gt; $b</entry>
        <entry>Greater than</entry>
        <entry>True if $a is strictly greater than $b.</entry>
       </row>
       <row>
        <entry>$a &lt;= $b</entry>
        <entry>Less than or equal to </entry>
        <entry>True if $a is less than or equal to $b.</entry>
       </row>
       <row>
        <entry>$a &gt;= $b</entry>
        <entry>Greater than or equal to </entry>
        <entry>True if $a is greater than or equal to $b.</entry>
       </row>
      </tbody>
     </tgroup>
    </table>

   <sect2 id="precedence">
    <title>Precedence</title>
    <simpara></simpara>

 </chapter>

<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
sgml-parent-document:nil
sgml-default-dtd-file:"../manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
-->