摘要: //接口 //关键字:interface //加载类: 第一种方法: include("./Ren.class.php"); include "./Ren.class.php"; //第二种方法: require("./Ren.class.php"); require "./Ren.class.php"; //第三种方法: require_once("./Ren.class.php");... 阅读全文
posted @ 2016-10-27 16:41 遇事稳坐钓鱼台 阅读(290) 评论(0) 推荐(0) 编辑
摘要: //静态 //普通成员 //普通成员是属于对象的 //静态成员 //静态成员属于类的 //关键字:static //self关键字:在类里面代表该类 //在静态方法里面不能调用普通成员 //在普通方法里面能够调用静态成员 //.$this代表该对象,需要用对象去调用它,不能用类名调用!说明了一个情况:在静态方法里面不能调用普通成员 class FenBi { publ... 阅读全文
posted @ 2016-10-27 08:46 遇事稳坐钓鱼台 阅读(582) 评论(0) 推荐(0) 编辑