吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 1292|回复: 7
收起左侧

[求助] 求助PHP如何请求ip+端口号格式的地址

[复制链接]
qPHPMYSQL 发表于 2021-7-6 09:43
求助PHP如何请求ip+端口号格式的地址,curl在本地可以正常请求ip+端口号格式的接口,但是线上会一直处于等待状态无法请求到接口

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

ytw6176 发表于 2021-7-6 10:16
[PHP] 纯文本查看 复制代码
function send_post($url, $post_data) {
    $postdata = http_build_query($post_data);
    $options = array(
        'http' => array(
            'method' => 'POST',
            'header' => 'Content-type:application/x-www-form-urlencoded',
            'content' => $postdata,
            'timeout' => 15 * 60 // 超时时间(单位:s)
        )
    );
    $context = stream_context_create($options);
    $result = file_get_contents($url, false, $context);
    return $result;
}


$post_data = array(
    'username' => 'username',
    'password' => 'password'
);
send_post('网址', $post_data);
Mr.[先知] 发表于 2021-7-6 10:17
curl可以请求的  但是如果请求不通地址 就是这个地址有问题 1不是公网地址 2防火墙不允许访问
keenshin 发表于 2021-7-6 10:42
头像被屏蔽
mmQAQ 发表于 2021-7-6 10:47
提示: 作者被禁止或删除 内容自动屏蔽
hengtongwl 发表于 2021-7-6 12:26
你是get请求还是post的请求呀
 楼主| qPHPMYSQL 发表于 2021-7-8 13:32
hengtongwl 发表于 2021-7-6 12:26
你是get请求还是post的请求呀

用的是get请求进行请求接口
 楼主| qPHPMYSQL 发表于 2021-7-8 13:33
谢谢各位大佬,没有找出原因,端口有开,防火墙关闭也还是一样的效果,换用file_get_contents了
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-26 00:42

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表