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.

13 lines
243 B

<?php
/**
* 就是把类的信息转成字符串存在一个文件里,等需要时转回来
*/
class ClassA{
public $varA=1;
public function funcA(){
echo $this->varA;
}
}
?>