fahriztx/zksoapphp
Composer 安装命令:
composer require fahriztx/zksoapphp
包简介
A PHP Library For Manage Data From Fingerprint Machine with SOAP Protocol
README 文档
README
A PHP Library For Manage Data From Fingerprint Machine with SOAP Protocol
Features
- Get Attendance Log with DateRange
- Get User Information
Requirements
- PHP version 7.2 or higher
- Fingerprint Machine Support ZK Web Service
Easy Installation
Install with composer
To install with Composer, simply require the latest version of this package.
composer require fahriztx/zksoapphp
Make sure that the autoload file from Composer is loaded.
// somewhere early in your project's loading, require the Composer autoloader // see: http://getcomposer.org/doc/00-intro.md require 'vendor/autoload.php';
Quick Start
Just pass your IP, Port and Comkey :
- Get Attendance
// reference the ZK Soap PHP namespace use Fahriztx\Zksoapphp\Fingerprint; // initial $machine = Fingerprint::connect('192.168.1.175', '80', '123456'); // get machine status echo "Machine Status : ".$machine->getStatus(); // connect | disconnect // get all log data print_r($machine->getAttendance()); // return Array of Attendance Log // get all log data with date print_r($machine->getAttendance('all', '2022-05-01')); // return Array of Attendance Log // get all log data with date range print_r($machine->getAttendance('all', '2022-05-01', '2022-05-10')); // return Array of Attendance Log // get specific pin log data print_r($machine->getAttendance(1)); // return Array of Attendance Log // OR Array print_r($machine->getAttendance([1, 2])); // return Array of Attendance Log
- Get User Information
// reference the ZK Soap PHP namespace use Fahriztx\Zksoapphp\Fingerprint; // initial $machine = Fingerprint::connect('192.168.1.175', '80', '123456'); // get machine status echo "Machine Status : ".$machine->getStatus(); // connect | disconnect // get all user data print_r($machine->getUserInfo()); // return Array of User Info Data // get specific pin user data print_r($machine->getUserInfo(1)); // return Array of User Info Data // OR Array print_r($machine->getUserInfo([1, 2])); // return Array of User Info Data
Changelog
- Add support fot PHP >= 8.0
- Fixing Non-static method Fahriztx\Zksoapphp\Fingerprint::connect() cannot be called statically
fahriztx/zksoapphp 适用场景与选型建议
fahriztx/zksoapphp 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 644 次下载、GitHub Stars 达 18, 最近一次更新时间为 2022 年 05 月 23 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 fahriztx/zksoapphp 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 fahriztx/zksoapphp 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 644
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 18
- 点击次数: 22
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-05-23