本文整理汇总了PHP中cronBase::__construct方法的典型用法代码示例。如果您正苦于以下问题:PHP cronBase::__construct方法的具体用法?PHP cronBase::__construct怎么用?PHP cronBase::__construct使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类cronBase
的用法示例。
在下文中一共展示了cronBase::__construct方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __construct
public function __construct()
{
parent::__construct();
$this->city = new city();
$this->weatherInfo = new get_weatherInfo();
$this->realtimeCore = new realtime();
}
示例2: __construct
public function __construct()
{
parent::__construct();
if (!$this->settings['is_open_xs']) {
$this->errorOutput('NOT_OPEN_XS');
}
}
示例3: __construct
public function __construct()
{
parent::__construct();
include_once ROOT_PATH . 'lib/class/share.class.php';
include_once ROOT_PATH . 'lib/class/material.class.php';
$this->share = new share();
$this->material = new material();
}
示例4: __construct
/**
* 构造函数
* @author repheal
* @category hogesoft
* @copyright hogesoft
* @include news.class.php
*/
public function __construct()
{
parent::__construct();
$this->pubplan = new publishplan();
$this->pub_content = new publishcontent();
include CUR_CONF_PATH . 'lib/publish.class.php';
$this->obj = new publish();
}
示例5: __construct
public function __construct()
{
parent::__construct();
require_once CUR_CONF_PATH . 'lib/livemms.class.php';
$this->mLivemms = new livemms();
require_once CUR_CONF_PATH . 'lib/server_config.class.php';
$this->mServerConfig = new serverConfig();
}
示例6: __construct
public function __construct()
{
parent::__construct();
include_once ROOT_PATH . 'lib/class/share.class.php';
include_once CUR_CONF_PATH . 'lib/user_mode.class.php';
$this->share = new share();
$this->wbuser = new user_mode();
}
示例7: programRecord
function __construct()
{
parent::__construct();
include_once ROOT_PATH . 'lib/class/curl.class.php';
//$this->curl->mPostContentType('string');
include_once ROOT_PATH . 'lib/class/program_record.class.php';
$this->record = new programRecord();
}
示例8: curl
function __construct()
{
parent::__construct();
require_once ROOT_PATH . 'lib/class/curl.class.php';
$this->mMediaserver = new curl($this->settings['App_mediaserver']['host'], $this->settings['App_mediaserver']['dir'] . 'admin/');
require_once ROOT_PATH . 'lib/class/live.class.php';
$this->mLive = new live();
}
示例9: __construct
public function __construct()
{
parent::__construct();
$this->city = new city();
$this->weatherInfo = new get_weatherInfo();
$this->forcastCore = new forcast();
$this->extendCore = new extend();
}
示例10: __construct
/**
* 构造函数
* @author repheal
* @category hogesoft
* @copyright hogesoft
* @include news.class.php
*/
public function __construct()
{
parent::__construct();
include_once CUR_CONF_PATH . 'lib/mkpublish.class.php';
$this->obj = new mkpublish();
include_once ROOT_PATH . 'lib/class/publishsys.class.php';
$this->pub_sys = new publishsys();
}
示例11: curl
function __construct()
{
parent::__construct();
include_once ROOT_PATH . 'lib/class/curl.class.php';
$this->curl = new curl($this->settings['mms']['record_server']['host'], $this->settings['mms']['record_server']['dir']);
$this->curl->mPostContentType('string');
include_once ROOT_PATH . 'lib/class/logs.class.php';
$this->logs = new logs();
}
示例12: __construct
/**
* 构造函数
* @author repheal
* @category hogesoft
* @copyright hogesoft
* @include site.class.php
*/
public function __construct()
{
parent::__construct();
$this->pub_config = new publishconfig();
include CUR_CONF_PATH . 'lib/content.class.php';
$this->obj = new content();
include_once ROOT_PATH . 'lib/class/mkpublish.class.php';
$this->mk = new mkpublish();
}
示例13: curl
function __construct()
{
parent::__construct();
include_once ROOT_PATH . 'lib/class/curl.class.php';
$this->curl = new curl($this->settings['App_mediaserver']['host'], $this->settings['App_mediaserver']['dir'] . 'admin/');
include_once ROOT_PATH . 'lib/class/live.class.php';
$this->live = new live();
$this->mLive = $this->settings['mms']['live_stream_server'];
}
示例14: __construct
public function __construct()
{
parent::__construct();
require_once ROOT_PATH . 'lib/class/live.class.php';
$this->mLive = new live();
require_once CUR_CONF_PATH . 'lib/schedule.class.php';
$this->mSchedule = new schedule();
require_once CUR_CONF_PATH . 'lib/livemms.class.php';
$this->mLivemms = new livemms();
}
示例15: curl
function __construct()
{
parent::__construct();
require_once ROOT_PATH . 'lib/class/curl.class.php';
$this->mMediaserver = new curl($this->settings['App_mediaserver']['host'], $this->settings['App_mediaserver']['dir'] . 'admin/');
require_once CUR_CONF_PATH . 'lib/channel.class.php';
$this->mChannel = new channel();
require_once CUR_CONF_PATH . 'lib/server_config.class.php';
$this->mServerConfig = new serverConfig();
}