class test { //声明类 public function ss() { //声明类中的函数 return "Hello, World!"; }} $t = new test(); //实例化类对象echo $t->ss(); //调用类对象中的函数?>
include 类文件