PageRenderTime 47ms CodeModel.GetById 24ms RepoModel.GetById 0ms app.codeStats 0ms

/test/subjects/parsing/unset.php

http://phc.googlecode.com/
PHP | 8 lines | 5 code | 2 blank | 1 comment | 0 complexity | 203b2ec48b71e64659a9a09dc0d2ae81 MD5 | raw file
Possible License(s): GPL-2.0, 0BSD, BSD-3-Clause, Unlicense, MPL-2.0-no-copyleft-exception, LGPL-2.1
  1. <?php
  2. unset($x, $a->b);
  3. var_dump ($x, $a);
  4. // unset(f());
  5. $x = (unset) $x;
  6. ?>