HUX布斯
myclass.php1234567891011<?php class test{ public function abc(){ echo "this is the function of abc"; } } //实例化 $mytest=new test(); //执行方法 $mytest->test();当你浏览器输入这个网站的路径+myclass.php的时候,页面就会显示this is the function of abc