上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 38 下一页
摘要: 输出结果: 喜欢吃粤菜喜欢喝汤 阅读全文
posted @ 2019-06-02 19:11 saintdingtheGreat 阅读(98) 评论(0) 推荐(0) 编辑
摘要: 输出结果: 嗷儿喂~嗷儿喂~大家好 陈培昌 今年 21 来自 北武堂 阅读全文
posted @ 2019-06-02 02:20 saintdingtheGreat 阅读(106) 评论(0) 推荐(0) 编辑
摘要: 类常量 输出结果: 今年34岁了,想做程序员,还有戏么什么?你已经34了,都?今年我34岁了今年我34岁了 静态变量 静态变量和方法属于类,于是不能出现$this->静态方法名,然而却是可以通过对象obj::静态方法名的方式访问。 输出结果: there is a game of lovemy na 阅读全文
posted @ 2019-06-02 01:11 saintdingtheGreat 阅读(2021) 评论(0) 推荐(0) 编辑
摘要: 输出结果: upon melancholy hill #实例化时调用了__construct()方法working hard and party with cpc and cj #打印对象时调用了__toString方法string(8) "wenheiwa" #对象调用了不存在的方法wenheiw 阅读全文
posted @ 2019-06-01 19:59 saintdingtheGreat 阅读(276) 评论(0) 推荐(0) 编辑
摘要: 完全重写 <?php class coach { public function __construct() { echo "欢迎来到~北武堂训练~"; } } class cj extends coach { public function __construct($name) { echo "哎 阅读全文
posted @ 2019-06-01 09:55 saintdingtheGreat 阅读(278) 评论(0) 推荐(0) 编辑
摘要: public可以被继承,可以外部访问(也就是实例化对象可以直接访问) protected受保护的,可以被子类继承,无法外部访问 private继承,外部访问都别想 输出结果: 我的师父是老张__我爱丁大锅__喜欢玩吼吼~哈哈~ #继承自父类的slogan()方法hello~my name is 陈培 阅读全文
posted @ 2019-06-01 02:46 saintdingtheGreat 阅读(235) 评论(0) 推荐(0) 编辑
摘要: 实例化类 黑科技用法,通过字符串来实例化 构造函数 喜欢练搏击的弟弟 获取到的名字是:陈培昌 继承(与python不同,php是单一继承语言,也就是一个类只能有一个父类) 吼吼~哈哈~hello~my name is 陈培昌今年芳龄21 $this详解 陈培昌喜欢丁大锅通过魔术方法__get获取到的 阅读全文
posted @ 2019-06-01 01:48 saintdingtheGreat 阅读(506) 评论(0) 推荐(0) 编辑
摘要: 对于网站A,有一链接 '/auth/list',返回json数据 网站b某页面下可以这样写jsonp get请求 这样,网站b也可以拿到页面最开始展示的json数据 阅读全文
posted @ 2019-06-01 00:08 saintdingtheGreat 阅读(188) 评论(0) 推荐(0) 编辑
摘要: 为了检查当前请求是否在用户的权限列表中,我们需要获取uri(也就是当前链接),下列代码说明了获取的过程,也证明了python魔术方法的重要性class testHandler(RequestHandler): def prepare(self): print(self.__dir__())#或取对象所有属性和方法名称 myurl = self.__geta... 阅读全文
posted @ 2019-05-31 18:19 saintdingtheGreat 阅读(847) 评论(0) 推荐(0) 编辑
摘要: class coachpic(RequestHandler): @gen.coroutine def post(self): picurl = self.request.files['picurl'][0] print("picurl:{}".format(picurl)) ret = yield self.editpic(picu... 阅读全文
posted @ 2019-05-30 23:33 saintdingtheGreat 阅读(430) 评论(0) 推荐(0) 编辑
上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 38 下一页