madmagestelegram/types
最新稳定版本:1.9.0
Composer 安装命令:
composer require madmagestelegram/types
包简介
Representation of telegram bot types in php classes
关键字:
README 文档
README
Representaion of telegram bot types in php classes. Generated by madmagestelegram/TypesGenerator.
Install
composer require madmagestelegram/types
Usage
Simplest usage is getting and setting data
$message = new Message(); $message->setText('Hello world!'); echo $message->getText(); // "Hello world!" // as assoc array print_r($message->_getData());// ['text' => 'Hello world!']
more fields
$message = ( new Message() ) ->setMessageId(1) ->setDate(time()) ->setChat(( new Chat() )->setId(1)->setType('channel')) ->setText('Hello world!') ->setAudio( ( new Audio() ) ->setFileId("1") ->setDuration(60) ->setTitle('Some title') ->setThumb(( new PhotoSize() ) ->setFileId("1") ->setHeight(100) ->setWidth(100) ) )->setLocation( ( new Location() ) ->setLatitude(60.60) ->setLongitude(60.60) ); print_r($message->_getData()); /* Array ( [message_id] => 1 [date] => 1570945477 [chat] => Array ( [id] => 1 [type] => channel ) [text] => Hello world! [audio] => Array ( [file_id] => 1 [duration] => 60 [title] => Some title [thumb] => Array ( [file_id] => 1 [width] => 100 [height] => 100 ) ) [location] => Array ( [longitude] => 60.6 [latitude] => 60.6 ) ) */
统计信息
- 总下载量: 9.9k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 0
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-07-28