用js获取浏览器的url,然后如何把这个url传给php
4 回答
HUX布斯
TA贡献1876条经验 获得超6个赞
myclass.php
1 2 3 4 5 6 7 8 9 10 11 | <?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
添加回答
举报
0/150
提交
取消