PageRenderTime 49ms CodeModel.GetById 23ms RepoModel.GetById 1ms app.codeStats 0ms

/hphp/test/quick/boxed-empty.php

http://github.com/facebook/hiphop-php
PHP | 10 lines | 7 code | 3 blank | 0 comment | 0 complexity | 8ef8e3fb4bda6f3df3773126b14c4383 MD5 | raw file
Possible License(s): LGPL-2.1, BSD-2-Clause, BSD-3-Clause, MPL-2.0-no-copyleft-exception, MIT, LGPL-2.0, Apache-2.0
  1. <?php
  2. function main($a) {
  3. $x =& $y;
  4. $x = $a[0];
  5. return empty($x) ? true : false;
  6. }
  7. echo main(array(array()))."\n";