You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
243 B

3 years ago
  1. <?php
  2. /**
  3. * 就是把类的信息转成字符串存在一个文件里,等需要时转回来
  4. */
  5. class ClassA{
  6. public $varA=1;
  7. public function funcA(){
  8. echo $this->varA;
  9. }
  10. }
  11. ?>