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


PHP Protocol::__construct方法代码示例

本文整理汇总了PHP中Protocol::__construct方法的典型用法代码示例。如果您正苦于以下问题:PHP Protocol::__construct方法的具体用法?PHP Protocol::__construct怎么用?PHP Protocol::__construct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Protocol的用法示例。


在下文中一共展示了Protocol::__construct方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: array

 function __construct()
 {
     parent::__construct();
     $this->id = 0;
     $this->author = '';
     $this->name = '';
     $this->size = 0;
     $this->desc = '';
     $this->turl = '';
     $this->mpurl = '';
     $this->mcurl = '';
     $this->miurl = '';
     $this->mmurl = '';
     $this->_index = 0;
     $this->icontact = 0;
     $this->iicon = 0;
     $this->imms = 0;
     $this->c_time = '';
     $this->pnum = 0;
     $this->intro = '';
     $this->starlevel = '';
     $this->kernel = 0;
     $this->type = 0;
     $this->effect = '';
     $this->font_style = '';
     $this->keyguard_style = '';
     $this->prev_imgs = array();
     $this->ad = 0;
     $this->adicon = '';
     $this->adurl = '';
 }
开发者ID:vvcumt,项目名称:zk,代码行数:31,代码来源:ThemesProtocol.php

示例2:

 function __construct()
 {
     parent::__construct();
     $this->name = 0;
     $this->iconUrl = '';
     $this->url = '';
     $this->size = '';
     $this->intro = '';
 }
开发者ID:vvcumt,项目名称:zk,代码行数:9,代码来源:LiveWallpaperProtocol.php

示例3:

 function __construct()
 {
     parent::__construct();
     $this->id = '';
     $this->name = '';
     $this->fname = '';
     $this->url = '';
     $this->size = 0;
     $this->imgurl = '';
 }
开发者ID:vvcumt,项目名称:zk,代码行数:10,代码来源:AlarmProtocol.php

示例4:

 function __construct()
 {
     parent::__construct();
     $this->id = '';
     $this->name = '';
     $this->fname = '';
     $this->url = '';
     $this->size = 0;
     $this->type = 0;
     $this->download_times = 0;
 }
开发者ID:vvcumt,项目名称:zk,代码行数:11,代码来源:RingProtocol.php

示例5:

 function __construct()
 {
     parent::__construct();
     $this->_cpid = '';
     $this->id = '';
     $this->name = '';
     $this->language = '';
     $this->fname = '';
     $this->url = '';
     $this->largepreurl = '';
     $this->previewurl = '';
     $this->purl = '';
     $this->size = 0;
     $this->md5 = '';
     $this->folder = '';
     $this->type = 0;
     $this->download_times = 0;
 }
开发者ID:vvcumt,项目名称:zk,代码行数:18,代码来源:FontProtocol.php

示例6:

 function __construct()
 {
     parent::__construct();
     $this->authorId = 0;
     $this->authorName = '';
     // 		$this->channel			= 0;
     $this->sceneEName = '';
     $this->sceneZName = '';
     $this->iconHd = '';
     $this->iconDownURL = '';
     $this->newCount = 0;
     $this->severResVersion = 0;
     $this->sceneId = 0;
     $this->sceneTotalSize = 0;
     $this->intro = '';
     $this->downloadUrl = '';
     $this->packageName = '';
     $this->updateCount = 0;
     $this->updateTime = 0;
 }
开发者ID:vvcumt,项目名称:zk,代码行数:20,代码来源:ScreenProtocol.php

示例7: array

 function __construct()
 {
     parent::__construct();
     $this->id = 0;
     $this->author = '';
     $this->name = '';
     $this->size = 0;
     $this->description = '';
     $this->them_file_url = '';
     $this->main_prev_url = '';
     $this->them_widget_url = '';
     $this->created_at = '';
     $this->prev_img_num = 0;
     $this->type = 0;
     $this->download_times = 0;
     $this->effect = '';
     $this->font_style = '';
     $this->keyguard_style = '';
     $this->prev_imgs = array();
 }
开发者ID:vvcumt,项目名称:zk,代码行数:20,代码来源:ThemesDetailsProtocol.php

示例8:

 function __construct($name)
 {
     $this->name = $name;
     parent::__construct();
 }
开发者ID:xander-mbaka,项目名称:momentum,代码行数:5,代码来源:Accounting.php

示例9:

 function __construct()
 {
     parent::__construct();
 }
开发者ID:xander-mbaka,项目名称:momentum,代码行数:4,代码来源:AccountingOrigi.php


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