Skip to content

Releases: coding-libs/zkteco-php

v0.0.35

Choose a tag to compare

@coding-libs coding-libs released this 05 May 05:15
52e177c

fixing: Reading attendance records fail randomly Issues By HalibutGitWiz

v0.0.34

Choose a tag to compare

@coding-libs coding-libs released this 12 Aug 16:38

fixing composer js dependacy

v0.0.33

Choose a tag to compare

@coding-libs coding-libs released this 24 Jul 06:58

I am developing a self-hosted custom iClock web software. For iClock, the pushcommkey is optionally used for authentication purposes. Therefore, I have introduced the following methods:

setPushCommKey()
Set PushCommandKey
Example:

$zktecoLib->setPushCommKey('TokenComnKey'); 

getPushCommKey()
Retrieve PushCommKey.
Example:

$zktecoLib->getPushCommKey('); // Returns: "TokenComnKey"

v0.0.30

Choose a tag to compare

@coding-libs coding-libs released this 22 Jul 13:31

🚀 Introducing the following methods:

getDeviceData()
Retrieve any supported device parameter based on the ZKTeco protocol.
Example:

$zktecoLib->getDeviceData('TCPPort'); // Returns: "4370"

getDeviceId()
Retrieve device ID.
Example:

$zktecoLib->getDeviceId('TCPPort'); // Returns: "0"

setCustomData()
Set any custom key-value pair into the device's memory.
Example:

$zktecoLib->setCustomData('my_company_name', 'Coding Labs'); 

getCustomData()
Retrieve custom data previously stored using setCustomData().
Example:

$zktecoLib->getCustomData('my_company_name'); // Returns: "Coding Labs"```

v0.0.29

Choose a tag to compare

@coding-libs coding-libs released this 22 Jul 09:35

[0.0.28] Adding CMD Key support
[0.0.29] Fixing Type hint