curl_close($ch); on line 314 is deprecated as of php 8.5. I would suggest: if (PHP_VERSION_ID <= 80000) { curl_close($ch); } Since php 8.0 the function does nothing. And causes error since 8.5
curl_close($ch); on line 314 is deprecated as of php 8.5.
I would suggest:
if (PHP_VERSION_ID <= 80000) {
curl_close($ch);
}
Since php 8.0 the function does nothing. And causes error since 8.5