Skip to content

Releases: coding-libs/zkteco-php

v0.0.34

12 Aug 16:38

Choose a tag to compare

fixing composer js dependacy

v0.0.33

24 Jul 06:58

Choose a tag to compare

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

22 Jul 13:31

Choose a tag to compare

🚀 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

22 Jul 09:35

Choose a tag to compare

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