PageRenderTime 48ms CodeModel.GetById 22ms RepoModel.GetById 1ms app.codeStats 0ms

/hphp/test/zend/good/ext/standard/tests/strings/bug38770.php

http://github.com/facebook/hiphop-php
PHP | 8 lines | 7 code | 1 blank | 0 comment | 0 complexity | 4af3b4179ee25891bb841f4087b70dd8 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. <<__EntryPoint>> function main(): void {
  3. foreach (varray['N','l'] as $v) {
  4. print_r(unpack($v, pack($v, -30000)));
  5. }
  6. echo "Done\n";
  7. }