結束項目的已啟動計時器
請求參數
參數 | 類型 | 說明 | 必需的 |
---|---|---|---|
action | string | “EndTaskTimer” | Required |
timerid | int | 待結束任務的id | Required |
projectid | int | 任務計時器的項目 ID | Optional |
adminid | int | 與計時器關聯的管理員 ID | Optional |
end_time | int | 結束時間作為 unix 時間戳。如果未提供,則默認為 time() | Optional |
響應參數
參數 | 類型 | 說明 |
---|---|---|
result | string | 操作結果:成功或錯誤 |
message | string | “計時器已結束” |
示例請求 (CURL)
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://www.example.com/includes/api.php');
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS,
http_build_query(
array(
'action' => 'EndTaskTimer',
// See https://developers.whmcs.com/api/authentication
'username' => 'IDENTIFIER_OR_ADMIN_USERNAME',
'password' => 'SECRET_OR_HASHED_PASSWORD',
'projectid' => '1',
'timerid' => '1',
'adminid' => '2',
'responsetype' => 'json',
)
)
);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$response = curl_exec($ch);
curl_close($ch);
示例請求(本地 API)
$command = 'EndTaskTimer';
$postData = array(
'projectid' => '1',
'timerid' => '1',
'adminid' => '2',
);
$adminUsername = 'ADMIN_USERNAME'; // Optional for WHMCS 7.2 and later
$results = localAPI($command, $postData, $adminUsername);
print_r($results);
示例響應 JSON
{
"result": "success",
"message": "Timer Has Ended"
}
錯誤響應
可能的錯誤條件響應包括:
- 未找到項目 ID
- 未設置定時器 ID
- 未找到計時器 ID
- 未找到管理員 ID
相關用法
- PHP WHMCS EncryptPassword用法及代碼示例
- PHP Explain str_split()用法及代碼示例
- PHP Explain array_map()用法及代碼示例
- PHP WHMCS EmailPreLog用法及代碼示例
- PHP WHMCS EmailPreSend用法及代碼示例
- PHP WHMCS EmailTplMergeFields用法及代碼示例
- PHP WHMCS ClientAreaPageDownloads用法及代碼示例
- PHP Ds\Map isEmpty()用法及代碼示例
- PHP PHPUnit assertIsNotFloat()用法及代碼示例
- PHP disk_total_space()用法及代碼示例
- PHP ReflectionClass getTraitAliases()用法及代碼示例
- PHP hash_hmac()用法及代碼示例
- PHP String wordwrap()用法及代碼示例
- PHP XMLWriter endPi()用法及代碼示例
- PHP SimpleXMLElement children()用法及代碼示例
- PHP IntlCalendar getTimeZone()用法及代碼示例
- PHP SplPriorityQueue isCorrupted()用法及代碼示例
- PHP XMLReader::getParserProperty()用法及代碼示例
- PHP imagegif()用法及代碼示例
- PHP imageresolution()用法及代碼示例
- PHP array_reverse()用法及代碼示例
- PHP IntlCalendar getActualMinimum()用法及代碼示例
- PHP WHMCS DomainGetWhoisInfo用法及代碼示例
- PHP metaphone()用法及代碼示例
- PHP WHMCS ClientAreaHeaderOutput用法及代碼示例
注:本文由純淨天空篩選整理自whmcs.com大神的英文原創作品 EndTaskTimer。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。