[PHP] Slack Webhook Class
Slack Webhook 사용을 위한 PHP Class 코드이다. <?php /* https://api.slack.com/incoming-webhooks https://www.webpagefx.com/tools/emoji-cheat-sheet/ */ class SLACK { private $webHookUrl; private $channel; private $userName; private $message; private $iconEmoji; private $iconUrl; private $attachments; private $attachmentsText; private $attachmentsTitle; private $attachmentsPreText; private $attachmentsColor; private $attachmentsAuthor; private $attachmentsFields; private $attachmentsFooter; public function __construct($webHookUrl=”, $userName=”) { $this->webHookUrl = $webHookUrl; $this->userName = $userName; $this->iconEmoji …