当前位置: 首页>>代码示例>>PHP>>正文


PHP outerReadBase::__construct方法代码示例

本文整理汇总了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();
 }
开发者ID:h3len,项目名称:Project,代码行数:7,代码来源:mood.php

示例2: __construct

 public function __construct()
 {
     parent::__construct();
     $this->mode = new member_friend_mode();
     $this->mMember = new member();
     $this->seekhelp = new seekhelp();
 }
开发者ID:h3len,项目名称:Project,代码行数:7,代码来源:member_friend_update.php

示例3: user

 function __construct()
 {
     parent::__construct();
     include ROOT_DIR . 'lib/user/user.class.php';
     $this->mUser = new user();
     /**/
 }
开发者ID:h3len,项目名称:Project,代码行数:7,代码来源:topic.php

示例4: __construct

 public function __construct()
 {
     parent::__construct();
     $this->mode = new member_friend_mode();
     $this->mMember = new member();
     $this->Members = new members();
 }
开发者ID:h3len,项目名称:Project,代码行数:7,代码来源:member_friend.php

示例5: __construct

 public function __construct()
 {
     parent::__construct();
     $this->city = new city();
     $this->forcast = new forcastWeather();
     $this->yesterday = new yesterdayWeather();
 }
开发者ID:h3len,项目名称:Project,代码行数:7,代码来源:weather_wuxi.php

示例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']);
 }
开发者ID:h3len,项目名称:Project,代码行数:7,代码来源:lottery_api.php

示例7: __construct

 public function __construct()
 {
     parent::__construct();
     if (!$this->user['user_id']) {
         $this->errorOutput('NO USER_ID');
     }
 }
开发者ID:h3len,项目名称:Project,代码行数:7,代码来源:receive_address.php

示例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'];
 }
开发者ID:h3len,项目名称:Project,代码行数:7,代码来源:alive.php

示例9:

 function __construct()
 {
     parent::__construct();
     $this->pm2token = PM25TOKEN;
     $this->mUpdateCache = $this->input['update_cache'] ? true : false;
     $this->initCity();
 }
开发者ID:h3len,项目名称:Project,代码行数:7,代码来源:pm25.php

示例10: programShield

 function __construct()
 {
     $this->mNeedCheckIn = false;
     parent::__construct();
     include_once CUR_CONF_PATH . 'lib/program_shield.class.php';
     $this->mProgramShield = new programShield();
 }
开发者ID:h3len,项目名称:Project,代码行数:7,代码来源:program.php

示例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');
         }
     }
 }
开发者ID:h3len,项目名称:Project,代码行数:34,代码来源:playlist.php

示例12: __construct

 public function __construct()
 {
     parent::__construct();
     $this->material = new material();
     $this->member = new member_mode();
     $this->members = new members();
 }
开发者ID:h3len,项目名称:Project,代码行数:7,代码来源:seekhelp_member_update.php

示例13: __construct

 public function __construct()
 {
     parent::__construct();
     $this->obj = new Core();
     $this->stateconfig = $this->settings['order_status'];
     $this->trace_stepconfig = $this->settings['trace_step'];
 }
开发者ID:h3len,项目名称:Project,代码行数:7,代码来源:Order.php

示例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();
 }
开发者ID:h3len,项目名称:Project,代码行数:7,代码来源:member_friend_blacklist.php

示例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();
 }
开发者ID:h3len,项目名称:Project,代码行数:8,代码来源:apply_show.php


注:本文中的outerReadBase::__construct方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。