网络PHPURL转发通过PHP实现URL转发楊遠徵2020-12-042024-05-12 使用函数file_get_contents()。 123<?phpecho file_get_contents('https://blog.ssss.fun');?> 使用PHP扩展CURL。 123456789<?php$ch = curl_init();curl_setopt($ch, CURLOPT_URL, 'https://blog.ssss.fun');curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5);$contents = curl_exec($ch);curl_close($ch);echo $contents;?>