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


PHP Api::set方法代码示例

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


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

示例1: load

 public function load($b)
 {
     $this->file_id = $b["file_id"];
     $this->thumb = Api::set($b, "thumb", PhotoSize);
     $this->file_name = Api::pre($b, "file_name", "");
     $this->mime_type = Api::pre($b, "mime_type", "");
     $this->file_size = Api::pre($b, "file_size", 0);
 }
开发者ID:kryptur,项目名称:telegramBot,代码行数:8,代码来源:document.class.php

示例2: load

 public function load($b)
 {
     $this->file_id = $b["file_id"];
     $this->width = $b["width"];
     $this->height = $b["height"];
     $this->thumb = Api::set($b, "thumb", PhotoSize);
     $this->file_size = Api::pre($b, "file_size", 0);
 }
开发者ID:kryptur,项目名称:telegramBot,代码行数:8,代码来源:sticker.class.php

示例3: load

 public function load($b)
 {
     $this->data = $b;
     $this->id = $b["message_id"];
     $this->from = Api::set($b, "from", "User");
     $this->date = $b["date"];
     $this->chat = new Chat($b["chat"]);
     $this->forward_from = Api::set($b, "forward_from", "User");
     $this->forward_date = isset($b["forward_date"]) ? $b["forward_date"] : -1;
     $this->reply_to_message = Api::set($b, "reply_to_message", "Message");
     $this->getType();
     if ($this->type == "text") {
         $this->exploded = explode(" ", $this->text);
     }
     if ($this->type == "text" && strpos($this->text, "/") === 0) {
         $this->is_command = true;
         $this->text = str_replace("@" . BOT_OFFICIAL_NAME, "", $this->text);
     }
 }
开发者ID:kryptur,项目名称:telegramBot,代码行数:19,代码来源:message.class.php


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