| 1234567891011121314 |
- <?php
- namespace Biz\Message;
- require 'Lib/phpMQTT.php';
- class Notify{
- public function publish($channel,$content)
- {
- // $mqtt = new \phpMQTT(MSG_URL, 1883, "system"); //Change client name to something unique
- // // print_r($channel.'----'.$con)
- // if ($mqtt->connect()) {
- // $res = $mqtt->publish($channel,$content,1);
- // $mqtt->close();
- // }
- }
- }
|