PHP code example of heromark / dingtalk-chatbot-php
1. Go to this page and download the library: Download heromark/dingtalk-chatbot-php library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
heromark / dingtalk-chatbot-php example snippets
composer
use DingtalkChatbot\Dingtalk;
$ding = new DingtalkChatbot\Dingtalk($accesstoken);
//发送 text 类型消息
$ding->setText($text,[$atMobiles,$isAtAll])->send();
//发送 link 类型消息
$ding->setLink($text,$title,$messageUrl,$picUrl)->send();
//发送 markdown 类型消息
$ding->setMarkdown($text,$title)->send();