Init Repo

This commit is contained in:
root
2019-09-06 23:53:10 +08:00
commit f0ef89dfbb
7905 changed files with 914138 additions and 0 deletions

15
vendor/swoole/examples/ssl/client.php vendored Executable file
View File

@ -0,0 +1,15 @@
<?php
$client = new swoole_client(SWOOLE_SOCK_TCP | SWOOLE_SSL);
if (!$client->connect('192.168.0.44', 9501, -1))
{
exit("connect failed. Error: {$client->errCode}\n");
}
echo "connect ok\n";
sleep(1);
for ($i = 0; $i < 1000; $i++)
{
$client->send("hello world-" . str_repeat('A', $i) . "\n");
echo $client->recv();
}
sleep(1);