kllakk / php-wialon
PHP Wialon 库
dev-master
2020-02-03 14:47 UTC
This package is auto-updated.
Last update: 2024-09-29 05:35:58 UTC
README
Wialon
- 允许根据文档执行任何 Wialon 远程 API 请求。需要 cUrl。
WialonError
- 简单地将 Wialon 错误代码转换为文本消息。
用法
include('wialon.php'); $wialon_api = new Wialon(); // old username and password login is deprecated, use token login $token = 'Your token here'; $result = $wialon_api->login($token); $json = json_decode($result, true); if(!isset($json['error'])){ echo $wialon_api->core_search_item('{"id":717359,"flags":0x1}'); $wialon_api->logout(); } else { echo WialonError::error($json['error']); }