mirror of
https://github.com/php/php-src.git
synced 2026-03-28 18:22:42 +01:00
11 lines
246 B
Plaintext
11 lines
246 B
Plaintext
$unset_var = 10;
|
|
unset($unset_var);
|
|
|
|
$variation_array = array(
|
|
'unset var' => @$unset_var,
|
|
'undefined var' => @$undefined_var,
|
|
'empty string DQ' => "",
|
|
'empty string SQ' => '',
|
|
'uppercase NULL' => NULL,
|
|
'lowercase null' => null,
|
|
); |