PageRenderTime 56ms CodeModel.GetById 19ms RepoModel.GetById 1ms app.codeStats 0ms

/tests/php/semantic/isset.php

https://github.com/llvm-djk/pfff
PHP | 5 lines | 4 code | 1 blank | 0 comment | 0 complexity | f7e84ad632b1ada0ec887de45382b553 MD5 | raw file
Possible License(s): LGPL-2.1, GPL-2.0, LGPL-3.0, ISC
  1. <?php
  2. var_dump(isset($x));
  3. $x = 1;
  4. var_dump(isset($x));