ZKLibrary
ZKLibrary copied to clipboard
Only getUser() is working other functions not working :
My device is connected successfully but only i can get users information other functions like (getAttendance , getSizeUser , getSizeAttendance()) etc not working can someone know what to do ? Here is my code: `<?php include "zklibrary.php"; $zk = new ZKLibrary('192.168.2.200', 4370); $zk->connect();
// $zk->disableDevice(); // $attendance = $zk->getAttendance(); // $size = $zk->getSizeUser(); // echo $size; // $users = $zk->getUser(); // print_r($users);exit(); $test1 = $zk-> getVersion(); print_r($test1);
$zk->enableDevice(); $zk->disconnect();
?> `
Me too, getAttendance(); not working, but getUser(); is verry good.
@tangduongtrieu did you manage to solve this issue? I'm having the same problem