1
0
mirror of https://github.com/php/php-src.git synced 2026-03-28 18:22:42 +01:00
Files
archived-php-src/scripts/dev/generate-phpt/src/codeSnippets/emptyUnsetUndefNull.txt
2009-05-07 09:21:43 +00:00

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,
);