summaryrefslogtreecommitdiff
path: root/scripts/dev/generate-phpt/src/codeSnippets/emptyUnsetUndefNull.txt
blob: a9577812056be8056d7731772978327590eeb492 (plain)
1
2
3
4
5
6
7
8
9
10
11
$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,
  );