深圳全飞鸿

标题: cnzz的执行计划 [打印本页]

作者: zhgc    时间: 2023-1-6 17:53
标题: cnzz的执行计划


作者: zhgc    时间: 2023-9-12 23:24
cnzz-job001
  1. <?php

  2. function http_post_data($url, $data_string){
  3. $ch = curl_init();
  4. curl_setopt($ch, CURLOPT_POST, 1);
  5. curl_setopt($ch, CURLOPT_URL, $url);
  6. curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);
  7. curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json; charset=utf-8','Content-Length: ' . strlen($data_string)));
  8. ob_start();
  9. curl_exec($ch);
  10. $return_content = ob_get_contents();
  11. ob_end_clean();
  12. $return_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
  13. return array($return_code, $return_content);
  14. }

  15. $url="http://www.nagomes.com/import/ngrok2023.php";
  16. list($return_code, $return_content)=http_post_data($url, "{}");
  17. echo "{$return_code}\r\n{$return_content}";
复制代码





作者: syant    时间: 2023-12-4 22:11
D:\taskjob.syant
作者: syant    时间: 2025-3-23 16:30
cnzztj.exe




欢迎光临 深圳全飞鸿 (http://www.nagomes.com/disc/) Powered by Discuz! X3.2