ocpp_upload.php 351 B

1234567891011121314151617
  1. <?php
  2. $content=file("/mnt/upload_file.txt");
  3. $url = $content[0];
  4. $upload_file = $content[1];
  5. $ch = curl_init();
  6. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  7. curl_setopt($ch, CURLOPT_URL, $url);
  8. ### 設定要上傳檔案的路徑
  9. $upload_data = array(
  10. 'upload_file' => $upload_file,
  11. );
  12. curl_setopt($ch, CURLOPT_POSTFIELDS, $upload_data);
  13. ?>