You've already forked qlg.tsgz.moe
Init Repo
This commit is contained in:
37
vendor/swoole/examples/task/shared_client.php
vendored
Executable file
37
vendor/swoole/examples/task/shared_client.php
vendored
Executable file
@ -0,0 +1,37 @@
|
||||
<?php
|
||||
$client = new swoole_client(SWOOLE_SOCK_TCP);
|
||||
if(!$client->connect('127.0.0.1', 9501))
|
||||
{
|
||||
exit("connect failed\n");
|
||||
}
|
||||
function help()
|
||||
{
|
||||
echo "get eg: php ".__FILE__." get key".PHP_EOL;
|
||||
echo "set eg: php ".__FILE__." set key value".PHP_EOL;
|
||||
echo "del eg: php ".__FILE__." del key".PHP_EOL;
|
||||
echo "task eg: php ".__FILE__." task key".PHP_EOL;
|
||||
exit();
|
||||
}
|
||||
if($argc < 3) {
|
||||
help();
|
||||
}
|
||||
$keys = array(
|
||||
1 => 'cmd',
|
||||
2 => 'key',
|
||||
3 => 'val'
|
||||
);
|
||||
$sends = array();
|
||||
foreach ($keys as $i => $key)
|
||||
{
|
||||
if (isset($argv[$i]))
|
||||
{
|
||||
$sends[$key] = $argv[$i];
|
||||
}
|
||||
}
|
||||
if (empty($sends))
|
||||
{
|
||||
help();
|
||||
}
|
||||
$client->send(serialize($sends));
|
||||
$data = $client->recv();
|
||||
echo $data . PHP_EOL;
|
Reference in New Issue
Block a user