国产精品久久久aaaa,日日干夜夜操天天插,亚洲乱熟女香蕉一区二区三区少妇,99精品国产高清一区二区三区,国产成人精品一区二区色戒,久久久国产精品成人免费,亚洲精品毛片久久久久,99久久婷婷国产综合精品电影,国产一区二区三区任你鲁

電子發(fā)燒友App

硬聲App

掃碼添加小助手

加入工程師交流群

0
  • 聊天消息
  • 系統(tǒng)消息
  • 評(píng)論與回復(fù)
登錄后你可以
  • 下載海量資料
  • 學(xué)習(xí)在線課程
  • 觀看技術(shù)視頻
  • 寫文章/發(fā)帖/加入社區(qū)
會(huì)員中心
創(chuàng)作中心

完善資料讓更多小伙伴認(rèn)識(shí)你,還能領(lǐng)取20積分哦,立即完善>

3天內(nèi)不再提示
創(chuàng)作
電子發(fā)燒友網(wǎng)>電子資料下載>電子資料>PHPMQTT-CLI PHPMQTT命令行工具

PHPMQTT-CLI PHPMQTT命令行工具

2022-06-30 | zip | 0.02 MB | 次下載 | 免費(fèi)

資料介紹

授權(quán)協(xié)議 Apache
開發(fā)語(yǔ)言 PHP
操作系統(tǒng) 跨平臺(tái)
軟件類型 開源軟件

軟件簡(jiǎn)介

PHPMQTT-CLI是基于PHPMQTT提供的命令行工具,支持發(fā)布和訂閱。

  ____  _   _ ____  __  __  ___ _____ _____
|  _ \| | | |  _ \|  \/  |/ _ \_   _|_   _|
| |_) | |_| | |_) | |\/| | | | || |   | |
|  __/|  _  |  __/| |  | | |_| || |   | |
|_|   |_| |_|_|   |_|  |_|\__\_\|_|   |_|

安裝

composer require simps/mqtt-cli

使用

Publish

$ php vendor/bin/mqtt publish --help
Description:
Publishing simple messages
Usage:
publish [options]
Options:
-H, --host[=HOST]                        Specify the host to connect to [default: "localhost"]
-P, --port[=PORT]                        Connect to the port specified [default: 1883]
-t, --topic=TOPIC                        The MQTT topic on which to publish the message
-m, --message=MESSAGE                    Send a single message from the command line
-i, --id[=ID]                            The id to use for this client [default: ""]
--qos[=QOS]                          Specify the quality of service to use for the message, from 0, 1 and 2 [default: 0]
--dup[=DUP]                          If the DUP flag is set to 0, it indicates that this is the first occasion that the Client or Server has attempted to send this PUBLISH packet [default: 0]
-r, --retain[=RETAIN]                    If the RETAIN flag is set to 1 in a PUBLISH packet sent by a Client to a Server, the Server MUST replace any existing retained message for this topic and store the Application Message [default: 0]
-u, --username[=USERNAME]                Provide a username to be used for authenticating with the broker
-p, --pw[=PW]                            Provide a password to be used for authenticating with the broker
-c, --clean-session[=CLEAN-SESSION]      Setting the 'clean session' flag [default: true]
-l, --level=LEVEL                        MQTT Protocol level [default: 4]
-k, --keepalive[=KEEPALIVE]              The number of seconds between sending PING commands to the broker for the purposes of informing it we are still connected and functioning [default: 0]
--will-topic[=WILL-TOPIC]            The topic on which to send a Will, in the event that the client disconnects unexpectedly
--will-message[=WILL-MESSAGE]        Specify a message that will be stored by the broker and sent out if this client disconnects unexpectedly
--will-qos[=WILL-QOS]                The QoS to use for the Will [default: 0]
--will-retain[=WILL-RETAIN]          If given, if the client disconnects unexpectedly the message sent out will be treated as a retained message [default: 0]
-S, --ssl[=SSL]                          Enable SSL encryption [default: false]
--config-path[=CONFIG-PATH]          Setting the Swoole config file path
--properties-path[=PROPERTIES-PATH]  Setting the Properties config file path
-h, --help                               Display help for the given command. When no command is given display help for the list command
-q, --quiet                              Do not output any message
-V, --version                            Display this application version
--ansi                               Force ANSI output
--no-ansi                            Disable ANSI output
-n, --no-interaction                     Do not ask any interactive question
-v|vv|vvv, --verbose                     Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
Help:
An MQTT version 3.1/3.1.1/5.0 client for publishing simple messages

Subscribe

$ php vendor/bin/mqtt subscribe --help
Description:
Subscribing to topics
Usage:
subscribe [options]
Options:
-H, --host[=HOST]                        Specify the host to connect to [default: "localhost"]
-P, --port[=PORT]                        Connect to the port specified [default: 1883]
-i, --id[=ID]                            The id to use for this client [default: ""]
--qos=QOS                            Specify the quality of service to use for the message, from 0, 1 and 2 (multiple values allowed)
-t, --topic=TOPIC                        The MQTT topic to subscribe to (multiple values allowed)
-u, --username[=USERNAME]                Provide a username to be used for authenticating with the broker
-p, --pw[=PW]                            Provide a password to be used for authenticating with the broker
-c, --clean-session[=CLEAN-SESSION]      Setting the 'clean session' flag [default: true]
-l, --level=LEVEL                        MQTT Protocol level [default: 4]
-k, --keepalive[=KEEPALIVE]              The number of seconds between sending PING commands to the broker for the purposes of informing it we are still connected and functioning [default: 0]
--will-topic[=WILL-TOPIC]            The topic on which to send a Will, in the event that the client disconnects unexpectedly
--will-message[=WILL-MESSAGE]        Specify a message that will be stored by the broker and sent out if this client disconnects unexpectedly
--will-qos[=WILL-QOS]                The QoS to use for the Will [default: 0]
--will-retain[=WILL-RETAIN]          If given, if the client disconnects unexpectedly the message sent out will be treated as a retained message [default: 0]
-S, --ssl[=SSL]                          Enable SSL encryption [default: false]
--config-path[=CONFIG-PATH]          Setting the Swoole config file path
--properties-path[=PROPERTIES-PATH]  Setting the Properties config file path
-U, --unsubscribe[=UNSUBSCRIBE]          Topics that need to be unsubscribed (multiple values allowed)
-e, --event[=EVENT]                      Subscribed EventDispatcher [default: ""]
? -n, --no-interaction ? ? ? ? ? ? ? ? ? ? Do not ask any interactive question
? -v|vv|vvv, --verbose ? ? ? ? ? ? ? ? ? ? Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug

?
PHP CLI MQTT
加入交流群
微信小助手二維碼

掃碼添加小助手

加入工程師交流群

下載該資料的人也在下載 下載該資料的人還在閱讀
更多 >

評(píng)論

查看更多

下載排行

本周

  1. 1新一代網(wǎng)絡(luò)可視化(NPB 2.0)
  2. 3.40 MB  |  1次下載  |  免費(fèi)
  3. 2冷柜-電氣控制系統(tǒng)講解
  4. 13.68 MB   |  1次下載  |  10 積分
  5. 3MDD品牌三極管MMBT3906數(shù)據(jù)手冊(cè)
  6. 2.33 MB  |  次下載  |  免費(fèi)
  7. 4MDD品牌三極管S9012數(shù)據(jù)手冊(cè)
  8. 2.62 MB  |  次下載  |  免費(fèi)
  9. 5LAT1218 如何選擇和設(shè)置外部晶體適配 BlueNRG-X
  10. 0.60 MB   |  次下載  |  3 積分
  11. 6LAT1216 Blue NRG-1/2 系列芯片 Flash 操作與 BLE 事件的互斥處理
  12. 0.89 MB   |  次下載  |  3 積分
  13. 7收音環(huán)繞擴(kuò)音機(jī) AVR-1507手冊(cè)
  14. 2.50 MB   |  次下載  |  免費(fèi)
  15. 8MS1000TA 超聲波測(cè)量模擬前端芯片技術(shù)手冊(cè)
  16. 0.60 MB   |  次下載  |  免費(fèi)

本月

  1. 1愛華AIWA HS-J202維修手冊(cè)
  2. 3.34 MB   |  37次下載  |  免費(fèi)
  3. 2PC5502負(fù)載均流控制電路數(shù)據(jù)手冊(cè)
  4. 1.63 MB   |  23次下載  |  免費(fèi)
  5. 3NB-IoT芯片廠商的資料說(shuō)明
  6. 0.31 MB   |  22次下載  |  1 積分
  7. 4UWB653Pro USB口測(cè)距通信定位模塊規(guī)格書
  8. 838.47 KB  |  5次下載  |  免費(fèi)
  9. 5蘇泊爾DCL6907(即CHK-S007)單芯片電磁爐原理圖資料
  10. 0.04 MB   |  4次下載  |  1 積分
  11. 6蘇泊爾DCL6909(即CHK-S009)單芯片電磁爐原理圖資料
  12. 0.08 MB   |  2次下載  |  1 積分
  13. 7100W準(zhǔn)諧振反激式恒流電源電路圖資料
  14. 0.09 MB   |  2次下載  |  1 積分
  15. 8FS8025B USB的PD和OC快充協(xié)議電壓誘騙控制器IC技術(shù)手冊(cè)
  16. 1.81 MB   |  1次下載  |  免費(fèi)

總榜

  1. 1matlab軟件下載入口
  2. 未知  |  935137次下載  |  10 積分
  3. 2開源硬件-PMP21529.1-4 開關(guān)降壓/升壓雙向直流/直流轉(zhuǎn)換器 PCB layout 設(shè)計(jì)
  4. 1.48MB  |  420064次下載  |  10 積分
  5. 3Altium DXP2002下載入口
  6. 未知  |  233089次下載  |  10 積分
  7. 4電路仿真軟件multisim 10.0免費(fèi)下載
  8. 340992  |  191439次下載  |  10 積分
  9. 5十天學(xué)會(huì)AVR單片機(jī)與C語(yǔ)言視頻教程 下載
  10. 158M  |  183353次下載  |  10 積分
  11. 6labview8.5下載
  12. 未知  |  81602次下載  |  10 積分
  13. 7Keil工具M(jìn)DK-Arm免費(fèi)下載
  14. 0.02 MB  |  73822次下載  |  10 積分
  15. 8LabVIEW 8.6下載
  16. 未知  |  65991次下載  |  10 積分