下面是我的代码片段
$fp = fsockopen($s['url'], 80, $errno, $errstr, 5);
if($fp){
fwrite($fp, $out);
fclose($fp);
当我运行它时,它输出:
无法连接到 www.mydomain.net/1/file.php:80(php _ network _ getaddress: getaddrinfo 失败: 名称或服务未知
我使用它来向 $s['url']
提交 GET 数据
我不知道为什么,如果你能帮忙,我将不胜感激。