PageRenderTime 61ms CodeModel.GetById 18ms RepoModel.GetById 15ms app.codeStats 0ms

/var_export.php

https://github.com/GodTou/Test
PHP | 14 lines | 13 code | 1 blank | 0 comment | 0 complexity | 966103ae5943e8766b0a7de15a078648 MD5 | raw file
  1. <?php
  2. $a = range(1, 20);
  3. echo var_export($a, true);
  4. class classA {
  5. public $a;
  6. public $b;
  7. public function __construct() {
  8. }
  9. }
  10. $object = new classA();
  11. $object->a = "1212";
  12. echo var_export($object);
  13. ?>