PlaceholderService->api_url()."/api/latest"; $context = stream_context_create([ 'http' => [ 'method' => 'GET', 'header' => 'User-Agent: BlueprintFramework', ], ]); $response = file_get_contents($api_url, false, $context); if ($response) { $cleaned_response = preg_replace('/[[:^print:]]/', '', $response); $data = json_decode($cleaned_response, true); if (isset($data['name'])) { $latest_version = $data['name']; echo "$latest_version"; return "$latest_version"; } else { echo "Error: Unable to fetch the latest release version."; return "Error"; } } else { echo "Error: Failed to make the API request."; return "Error"; } } }