|
<?php |
|
|
|
$url = "https://vaibhav84-resumeapi.hf.space/UploadJobDescription/"; |
|
|
|
$file_path = "data/Java1.pdf"; |
|
|
|
|
|
$file_name = basename($file_path); |
|
|
|
|
|
$curl = curl_init(); |
|
|
|
|
|
curl_setopt_array($curl, array( |
|
CURLOPT_URL => $url, |
|
CURLOPT_RETURNTRANSFER => true, |
|
CURLOPT_POST => true, |
|
CURLOPT_POSTFIELDS => array( |
|
'file' => new CURLFile($file_path), |
|
'FileName' => $file_name |
|
), |
|
)); |
|
$start_time = microtime(true); |
|
|
|
$response = curl_exec($curl); |
|
|
|
$end_time = microtime(true); |
|
|
|
|
|
$total_time = $end_time - $start_time; |
|
|
|
|
|
if (curl_errno($curl)) { |
|
echo 'Error: ' . curl_error($curl); |
|
} else { |
|
|
|
echo $response . " \n"; |
|
echo "Total time: " . $total_time . " seconds\n"; |
|
} |
|
|
|
|
|
|
|
curl_close($curl); |
|
?> |
|
|
|
|