PageRenderTime 51ms CodeModel.GetById 26ms RepoModel.GetById 0ms app.codeStats 0ms

/hphp/test/slow/llvm/unset-string.php

http://github.com/facebook/hiphop-php
PHP | 11 lines | 8 code | 3 blank | 0 comment | 0 complexity | b1fc998f46ab7d17935be3d439e5ea88 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. <?hh
  2. function main($s) {
  3. unset($s[0]);
  4. }
  5. <<__EntryPoint>>
  6. function main_unset_string() {
  7. main('yo');
  8. }