You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
472 B
13 lines
472 B
<?php
|
|
// 发票系统-失败重新获取pdf 5分钟运行一次
|
|
$ch = curl_init();
|
|
curl_setopt($ch, CURLOPT_URL, 'http://ljclf.dgyq-water.com/task/InvoiceIssuanceTask/runCancelInitiateAgain');
|
|
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
|
|
$response = curl_exec($ch);
|
|
curl_close($ch);
|
|
// 可以记录日志
|
|
$date = date("H");
|
|
$arr = ['08','16'];
|
|
if (in_array($date, $arr)) {
|
|
file_put_contents('api_log_once.txt', date('Y-m-d H:i:s')." - API called\n", FILE_APPEND);
|
|
}
|