本文整理汇总了PHP中outerReadBase::__construct方法的典型用法代码示例。如果您正苦于以下问题:PHP outerReadBase::__construct方法的具体用法?PHP outerReadBase::__construct怎么用?PHP outerReadBase::__construct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类outerReadBase
的用法示例。
在下文中一共展示了outerReadBase::__construct方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __construct
public function __construct()
{
parent::__construct();
$this->Mstyle = new mood_style_mode();
$this->Mood = new mood_mode();
$this->publishcontent = new publishcontent();
}
示例2: __construct
public function __construct()
{
parent::__construct();
$this->mode = new member_friend_mode();
$this->mMember = new member();
$this->seekhelp = new seekhelp();
}
示例3: user
function __construct()
{
parent::__construct();
include ROOT_DIR . 'lib/user/user.class.php';
$this->mUser = new user();
/**/
}
示例4: __construct
public function __construct()
{
parent::__construct();
$this->mode = new member_friend_mode();
$this->mMember = new member();
$this->Members = new members();
}
示例5: __construct
public function __construct()
{
parent::__construct();
$this->city = new city();
$this->forcast = new forcastWeather();
$this->yesterday = new yesterdayWeather();
}
示例6: __construct
public function __construct()
{
parent::__construct();
global $gGlobalConfig;
include_once ROOT_PATH . 'lib/class/curl.class.php';
$this->curl = new curl($gGlobalConfig['App_shengwen']['host'], $gGlobalConfig['App_shengwen']['dir']);
}
示例7: __construct
public function __construct()
{
parent::__construct();
if (!$this->user['user_id']) {
$this->errorOutput('NO USER_ID');
}
}
示例8: livemms
function __construct()
{
parent::__construct();
require_once CUR_CONF_PATH . 'lib/livemms.class.php';
$this->mLivemms = new livemms();
$this->mLive = $this->settings['wowza']['dvr_server'];
}
示例9:
function __construct()
{
parent::__construct();
$this->pm2token = PM25TOKEN;
$this->mUpdateCache = $this->input['update_cache'] ? true : false;
$this->initCity();
}
示例10: programShield
function __construct()
{
$this->mNeedCheckIn = false;
parent::__construct();
include_once CUR_CONF_PATH . 'lib/program_shield.class.php';
$this->mProgramShield = new programShield();
}
示例11: time
function __construct()
{
parent::__construct();
$this->mTimenow = time() * 1000;
if (!$this->input['debug']) {
header('Content-Type: application/vnd.apple.mpegurl');
}
$channel_stream = $this->input['channel_stream'];
if ($channel_stream) {
$tmp = explode('_', $channel_stream);
$this->input['channel'] = $tmp[0];
$this->input['stream'] = $tmp[1];
}
$channel_id = addslashes($this->input['channel']);
if (!@(include CACHE_DIR . 'channel/' . $channel_id . '.php')) {
$this->db = hg_ConnectDB();
include_once CUR_CONF_PATH . 'lib/channel.class.php';
$mChannel = new channel();
$mChannel->cache_channel($channel_id);
@(include CACHE_DIR . 'channel/' . $channel_id . '.php');
}
if (!$channel_info['channel']) {
$this->errorOutput('NO_CHANNEL_NAME');
}
if (!$channel_info['channel']['status']) {
$this->errorOutput('CHANNEL_STOP');
}
$this->mChannelinfo = $channel_info;
if ($this->input['stream']) {
if (!array_key_exists($this->input['stream'], $this->mChannelinfo['stream'])) {
$this->errorOutput('NO_STREAM_NAME');
}
}
}
示例12: __construct
public function __construct()
{
parent::__construct();
$this->material = new material();
$this->member = new member_mode();
$this->members = new members();
}
示例13: __construct
public function __construct()
{
parent::__construct();
$this->obj = new Core();
$this->stateconfig = $this->settings['order_status'];
$this->trace_stepconfig = $this->settings['trace_step'];
}
示例14: __construct
public function __construct()
{
parent::__construct();
$this->mode = new member_friend_blacklist_mode();
$this->Members = new members();
$this->member_friend = new member_friend_mode();
}
示例15: activityLib
function __construct()
{
parent::__construct();
require_once 'lib/activity.class.php';
$this->libactivity = new activityLib();
include_once ROOT_PATH . 'lib/class/team.class.php';
$this->team = new team();
}