摘要:
一.<?phpnamespace Org\Weixin;class OrderPush{ protected $appid; protected $secrect; protected $accessToken; function __construct($appid, $secrect) { $t 阅读全文
posted @ 2019-11-01 16:30
北往星辰
阅读(2072)
评论(0)
推荐(0)
摘要:
一、魔术方法(13个)1、__construct()实例化对象时被调用, 当__construct和以类名为函数名的函数同时存在时,__construct将被调用,另一个不被调用。2、__destruct()当删除一个对象或对象操作终止时被调用。3、__call()对象调用某个方法, 若方法存在,则 阅读全文
posted @ 2019-11-01 10:15
北往星辰
阅读(175)
评论(0)
推荐(0)