UNPKG
manual-php
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
PHP 手册
github.com/kuriv/manual-php
kuriv/manual-php
manual-php
/
docs
/
语言参考
/
上下文选项和参数
/
套接字上下文选项.md
18 lines
(12 loc)
•
311 B
Markdown
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# 套接字上下文选项
套接字上下文选项可用于所有工作在套接字上的封装协议。 ```php
<?php
$option
= [
'socket'
=> [
'bindto'
=>
'0:7000'
] ];
$context
=
stream_context_create
(
$option
);
var_dump
(
file_get_contents
(
'http://www.example.com'
,
false
,
$context
)); ```