Replace example.com

This commit is contained in:
crazywhalecc
2025-07-22 22:00:39 +08:00
parent f2ccabf062
commit 2c81ca2bf8
2 changed files with 2 additions and 2 deletions

View File

@@ -9,7 +9,7 @@ assert(function_exists('curl_close'));
$curl_version = curl_version();
if (stripos($curl_version['ssl_version'], 'schannel') !== false) {
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, 'https://example.com/');
curl_setopt($curl, CURLOPT_URL, 'https://captive.apple.com/');
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_HEADER, 0);
$data = curl_exec($curl);