本文整理汇总了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);
}
示例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);
}
示例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);
}
}