You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
echo NON_EXISTING_CONSTANT; // same here, the constant is still undefined
73
-
// and 'NON_EXISTING_CONSTANT' is used as
74
-
// substitution value and a warning is emitted
72
+
echo NON_EXISTING_CONSTANT; // same here, the constant is still undefined
73
+
// and 'NON_EXISTING_CONSTANT' is used as
74
+
// substitution value and a warning is emitted
75
75
// again.
76
76
77
-
echo MAX_LENGTH; // same here due to a forward usage
77
+
echo MAX_LENGTH; // same here due to a forward usage
78
78
// (MAX_LENGTH is defined further below).
79
-
// 'MAX_LENGTH' is used as substitution
79
+
// 'MAX_LENGTH' is used as substitution
80
80
// value and a warning is emitted.
81
81
82
82
echo \NON_EXISTING_CONSTANT; // qualified use of undefined constant. Throws
@@ -138,7 +138,7 @@ See the recursive function example in [storage duration section](04-basic-concep
138
138
<aname="undefined-local-variables"></a>
139
139
**Undefined Local Variables**
140
140
141
-
A distinction is made based on the context where an undefined local variable is used.
141
+
A distinction is made based on the context where an undefined local variable is used.
142
142
143
143
*byVal Context*
144
144
@@ -162,53 +162,53 @@ Following some examples which outlines the behaviour with undefined local variab
162
162
```PHP
163
163
// The following 4 cases outline the exceptions of undefined variables
164
164
// used in byValue context where no notice is emitted.
165
-
$a;
165
+
$a;
166
166
isset($a);
167
167
empty($a);
168
168
$a ?? 'default Value';
169
169
170
170
$a = 1; // a VSlot for $a was created and 1 was assigned.
171
171
172
172
$b = $c; // a VSlot for $b was created and the value of $c was assigned to
173
-
// it. But because $c in turn was undefined, NULL was used as
174
-
// substitution value instead. In addition, a notice was
175
-
// emitted stating that $c was undefined.
173
+
// it. But because $c in turn was undefined, NULL was used as
174
+
// substitution value instead. In addition, a notice was
175
+
// emitted stating that $c was undefined.
176
176
177
-
$d = $c; // a VSlot for $d was created and the value of $c was assigned to
178
-
// it. But since $c is still undefined, NULL was used as
179
-
// substitution value instead and another notice was emitted
180
-
// stating $c was undefined.
177
+
$d = $c; // a VSlot for $d was created and the value of $c was assigned to
178
+
// it. But since $c is still undefined, NULL was used as
179
+
// substitution value instead and another notice was emitted
180
+
// stating $c was undefined.
181
181
182
-
$d + $e; // $e was undefined and `NULL` was used as substitution value
183
-
// instead. In addition, a notice was emitted stating that
182
+
$d + $e; // $e was undefined and `NULL` was used as substitution value
183
+
// instead. In addition, a notice was emitted stating that
184
184
// $e was undefined.
185
185
186
186
$f = &$g; // a VSlot for $f was created which points to the VSlot of $g.
187
-
// $g in turn was undefined but was defined implicitly because the
187
+
// $g in turn was undefined but was defined implicitly because the
188
188
// assignment was byRef. Thus a VSlot for $g was created and `NULL`
189
189
// was assigned to it. A notice was *not* emitted.
190
190
191
-
$h = $g; // a VSlot for $h was created and the value of $g (which is NULL)
191
+
$h = $g; // a VSlot for $h was created and the value of $g (which is NULL)
192
192
// was assigned to it.
193
193
194
194
function foo($x){}
195
195
196
-
foo($i); // $i was undefined and NULL was used as substitution value
197
-
// instead. In addition, a notice was emitted stating that $i
196
+
foo($i); // $i was undefined and NULL was used as substitution value
197
+
// instead. In addition, a notice was emitted stating that $i
198
198
// was undefined.
199
199
200
-
$j = $i; // a VSlot for $j was created and the value of $i was assigned to
201
-
// it. But because $i in turn was still undefined, NULL was used
202
-
// as substitution value instead. Another notice was emitted
200
+
$j = $i; // a VSlot for $j was created and the value of $i was assigned to
201
+
// it. But because $i in turn was still undefined, NULL was used
202
+
// as substitution value instead. Another notice was emitted
203
203
// stating that $i was undefined.
204
204
205
205
function bar(&$x){}
206
206
207
-
bar($k); // $k was undefined but implicitly defined because it was passed to
208
-
// the function bar byRef. Thus a VSlot for $k was created and
207
+
bar($k); // $k was undefined but implicitly defined because it was passed to
208
+
// the function bar byRef. Thus a VSlot for $k was created and
209
209
// NULL was assigned to it. A notice was *not* emitted.
210
210
211
-
$l = $k; // a VSlot for $l was created and the value of $k (which is NULL)
211
+
$l = $k; // a VSlot for $l was created and the value of $k (which is NULL)
212
212
// was assigned to it.
213
213
214
214
```
@@ -230,7 +230,7 @@ array's name. An array element has allocated [storage duration](04-basic-concept
230
230
231
231
**Undefined Array Elements**
232
232
233
-
Similar to [undefined local variables](#undefined-local-variables), a distinction is made based on the context where an undefined array element is used.
233
+
Similar to [undefined local variables](#undefined-local-variables), a distinction is made based on the context where an undefined array element is used.
234
234
235
235
*byValue Context*
236
236
@@ -246,19 +246,19 @@ PHP defines implicitly an undefined array element when it is accessed byRef, a V
246
246
$colors = ["red", "white", "blue"]; // create array with 3 elements
247
247
$colors[] = "green"; // insert a new element
248
248
249
-
echo $colors[100]; // element with offset 100 is undefined and NULL is
250
-
// used as substitution value. Moreover, a notice is
249
+
echo $colors[100]; // element with offset 100 is undefined and NULL is
250
+
// used as substitution value. Moreover, a notice is
251
251
// emitted stating that an undefined offset was used.
252
252
253
-
echo $colors[100]; // element with offset 100 is still undefined and NULL
254
-
// is used as substitution value instead. Another
253
+
echo $colors[100]; // element with offset 100 is still undefined and NULL
254
+
// is used as substitution value instead. Another
255
255
// notice is emitted.
256
256
257
-
$b = &colors[100]; // a VSlot for $b is created which points to the array
258
-
// element with the offset 100. An array element with
259
-
// offset 100 was undefined but implicitly defined
260
-
// because the assignment is byRef. Thus a VSlot for
261
-
// the array element with offset 100 is created and
257
+
$b = &colors[100]; // a VSlot for $b is created which points to the array
258
+
// element with the offset 100. An array element with
259
+
// offset 100 was undefined but implicitly defined
260
+
// because the assignment is byRef. Thus a VSlot for
261
+
// the array element with offset 100 is created and
262
262
// NULL is assigned to it. A notice is *not* emitted.
263
263
```
264
264
@@ -335,20 +335,20 @@ Unlike the [local variable equivalent](#local-variables), function `f` outputs "
335
335
calls.
336
336
337
337
<aname="hidingNotice"></a>
338
-
Be also aware that declaring a function static can hide a local variable and/or a global variable withe the same name. The value of the local or global variable is not taken over as initial value of the function static. Subsequent modifications of the variable only modify the function static and do not affect the local nor the global variable. An example:
338
+
Be also aware that declaring a function static can hide a local variable and/or a global variable with the same name. The value of the local or global variable is not taken over as initial value of the function static. Subsequent modifications of the variable only modify the function static and do not affect the local nor the global variable. An example:
339
339
340
340
```PHP
341
341
function f(){
342
342
$fs = 10; // assign 10 to the local variable $fs
343
343
static $fs; // define a function static with name $fs
344
-
echo "\$fs = $fs\n"; // $fs =
344
+
echo "\$fs = $fs\n"; // $fs =
345
345
$fs = 5; // assign 5 to the function static $fs (local variable is not modified)
346
346
echo "\$fs = $fs\n"; // $fs = 5
347
347
global $fs; // define a global variable with name $fs
348
-
echo "\$fs = $fs\n"; // $fs =
348
+
echo "\$fs = $fs\n"; // $fs =
349
349
$fs = 3; // assign 3 to the global variable $fs (function static and local variable is not modified
0 commit comments