PageRenderTime 43ms CodeModel.GetById 17ms RepoModel.GetById 0ms app.codeStats 0ms

/hphp/test/slow/serialize/var_export.php

http://github.com/facebook/hiphop-php
PHP | 13 lines | 11 code | 2 blank | 0 comment | 0 complexity | 9fcd5dc46f3c8193fad05ff4263bb5f7 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. class A {
  3. protected $b = 'b';
  4. private $c = 'c';
  5. public $d = 'd';
  6. public $e = varray[varray['e']];
  7. }
  8. <<__EntryPoint>>
  9. function main_var_export() {
  10. var_export(new A);
  11. }