1234567891011121314151617 |
- <?php
- $content=file("/mnt/upload_file.txt");
- $url = $content[0];
- $upload_file = $content[1];
-
- $ch = curl_init();
-
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
- curl_setopt($ch, CURLOPT_URL, $url);
-
- ### 設定要上傳檔案的路徑
- $upload_data = array(
- 'upload_file' => $upload_file,
- );
-
- curl_setopt($ch, CURLOPT_POSTFIELDS, $upload_data);
- ?>
|