FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
framework/examples/http_client.php at master · metlive/framework · GitHub
metlive
/
framework
Public
forked from
whcyc2002/swoole_framework
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
framework
/
examples
/
http_client.php
Copy path
More file actions
More file actions
Latest commit
History
History
History
16 lines (14 loc) · 470 Bytes
Breadcrumbs
framework
/
examples
/
http_client.php
Copy path
File metadata and controls
16 lines (14 loc) · 470 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php
define
(
'
DEBUG
'
,
'
on
'
);
define
(
'
WEBPATH
'
,
dirname
(
__DIR__
));
require
WEBPATH
.
'
/libs/lib_config.php
'
;
$
client
=
new
Swoole
\
Async
\
HttpClient
(
'
http://127.0.0.1:8888/post.php
'
);
$
client
->
onReady
(
function
(
$
cli
,
$
body
,
$
header
){
var_dump
(
$
body
,
$
header
);
});
$
client
->
post
(
array
(
'
hello
'
=>
'
world
'
));
$
client
=
new
Swoole
\
Async
\
HttpClient
(
'
http://www.baidu.com/
'
);
$
client
->
onReady
(
function
(
$
cli
,
$
body
,
$
header
){
var_dump
(
$
body
,
$
header
);
});
$
client
->
get
();
Back
|
FazBrowse Home
|
New Git URL