$method, 'year' => $year, 'month' => $month, 'day' => $day ]; $cURL = curl_init(); curl_setopt($cURL, CURLOPT_URL, "https://api.ineo-team.ir/DateConvert.php?".http_build_query($data)); curl_setopt($cURL, CURLOPT_RETURNTRANSFER, true); $Result = json_decode(curl_exec($cURL), true); curl_close($cURL); return $Result; } echo json_encode(DateConvert($method, $year, $month, $day)); unlink("error_log"); ?>