我尝试使用tad-php库获取出勤数据,但出现错误 连接错误,尝试按照我在git或google上找到的所有教程和问题进行尝试,但仍然无法连接。我的设备使用ZEM600固件。
有人有这样的经历吗?
这里是我要调用的代码
<?php
require 'tad/lib/TADFactory.php';
require 'tad/lib/TAD.php';
require 'tad/lib/TADResponse.php';
require 'tad/lib/Providers/TADSoap.php';
require 'tad/lib/Providers/TADZKLib.php';
require 'tad/lib/Exceptions/ConnectionError.php';
require 'tad/lib/Exceptions/FilterArgumentError.php';
require 'tad/lib/Exceptions/UnrecognizedArgument.php';
require 'tad/lib/Exceptions/UnrecognizedCommand.php';
$tad_factory = new TADPHP\TADFactory();
use TADPHP\TADFactory;
use TADPHP\TAD;
$comands = TAD::commands_available();
$b1 = (new TADFactory(['ip'=>'myipaddress']))->get_instance();
$dt = $b1->get_date(); // method executed via TAD class.
echo $dt;
已启用套接字和curl模式。
感谢您的帮助
答案 0 :(得分:1)
请按照以下步骤操作: