在PHP中,可以通過設置HTTP請求頭中的Referer字段來偽造或隱藏Referer。以下是一種方法:
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'http://example.com');
curl_setopt($ch, CURLOPT_REFERER, 'http://fake-referer.com');
curl_exec($ch);
curl_close($ch);
$options = array(
'http' => array(
'header' => 'Referer: http://fake-referer.com'
)
);
$context = stream_context_create($options);
$response = file_get_contents('http://example.com', false, $context);
請注意,假造Referer可能會違反網站的使用條款或是不道德的行為。在進行此類操作時,請務必遵守相關法律法規和道德準則。