摘要:
一.<?phpnamespace Org\Weixin;class OrderPush{ protected $appid; protected $secrect; protected $accessToken; function __construct($appid, $secrect) { $t 阅读全文
摘要:
一、魔术方法(13个)1、__construct()实例化对象时被调用, 当__construct和以类名为函数名的函数同时存在时,__construct将被调用,另一个不被调用。2、__destruct()当删除一个对象或对象操作终止时被调用。3、__call()对象调用某个方法, 若方法存在,则 阅读全文