强制使用 IPv6 的正确方法是 'bindto' => '[::]:0'
套接字上下文选项 — 套接字上下文选项列表
套接字上下文选项适用于所有通过套接字工作的包装器,例如 tcp
、http
和 ftp
。
版本 | 描述 |
---|---|
7.1.0 | 添加了 tcp_nodelay 。 |
7.0.1 | 添加了 ipv6_v6only 。 |
示例 #1 基本 bindto
使用示例
<?php
// 使用 '192.168.0.100' IP 连接到互联网
$opts = array(
'socket' => array(
'bindto' => '192.168.0.100:0',
),
);
// 使用 '192.168.0.100' IP 和端口 '7000' 连接到互联网
$opts = array(
'socket' => array(
'bindto' => '192.168.0.100:7000',
),
);
// 使用 '2001:db8::1' IPv6 地址连接到互联网
// 和端口 '7000'
$opts = array(
'socket' => array(
'bindto' => '[2001:db8::1]:7000',
),
);
// 使用端口 '7000' 连接到互联网
$opts = array(
'socket' => array(
'bindto' => '0:7000',
),
);
// 创建上下文...
$context = stream_context_create($opts);
// ...并使用它来获取数据
echo file_get_contents('http://www.example.com', false, $context);
?>
您可以将 "bindto" 设置为 "0:0" 以强制使用 IPv4 而不是 IPv6。可能将 "[0]:0" 强制使用 IPv6,虽然我无法测试这一点。