PHP code example of wpjscc / reactphp-eventsource
1. Go to this page and download the library: Download wpjscc/reactphp-eventsource library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
wpjscc / reactphp-eventsource example snippets
$es = new Clue\React\EventSource\EventSource('https://example.com/stream.php');
$es->on('message', function (Clue\React\EventSource\MessageEvent $message) {
$json = json_decode($message->data);
echo $json->name . ': ' . $json->message . PHP_EOL;
});
$es = new Clue\React\EventSource\EventSource('https://example.com/stream.php');
$connector = new React\Socket\Connector([
'dns' => '127.0.0.1',
'tcp' => [
'bindto' => '192.168.10.1:0'
],
'tls' => [
'verify_peer' => false,
'verify_peer_name' => false
]
]);
$browser = new React\Http\Browser($connector);
$es = new Clue\React\EventSource\EventSource('https://example.com/stream.php', $browser);
$es->on('message', function (Clue\React\EventSource\MessageEvent $message) {
// $json = json_decode($message->data);
var_dump($message);
});
$es->on('message', function (Clue\React\EventSource\MessageEvent $message) {
$json = json_decode($message->data);
echo "{$json->name} is {$json->age} years old" . PHP_EOL;
});
$es->on('join', function (Clue\React\EventSource\MessageEvent $message) {
echo $message->data . ' joined' . PHP_EOL;
});
$es->on('chat', function (Clue\React\EventSource\MessageEvent $message) {
echo 'Message: ' . $message->data . PHP_EOL;
});
$es->on('leave', function (Clue\React\EventSource\MessageEvent $message) {
echo $message->data . ' left' . PHP_EOL;
});
$es->on('open', function () {
echo 'Connection opened' . PHP_EOL;
});
$redis->on('error', function (Exception $e) {
echo 'Error: ' . $e->getMessage() . PHP_EOL;
});
$es->on('error', function (Exception $e) use ($es) {
if ($es->readyState === Clue\React\EventSource\EventSource::CLOSED) {
echo 'Permanent error: ' . $e->getMessage() . PHP_EOL;
} else {
echo 'Temporary error: ' . $e->getMessage() . PHP_EOL;
}
});
assert($message->data === 'hello');
$json = json_decode($message->data);
assert($json->message === 'hello');
assert($message->data === 'hello');
assert($message->lastEventId === '1');
assert($message->data === 'Alice');
assert($message->type === 'join');
try {
$result = React\Async\await(translate('Meet Winter CMS'));
// promise successfully fulfilled with $result
echo 'Result: ' . $result;
} catch (Throwable $e) {
// promise rejected with $e
echo 'Error: ' . $e->getMessage();
}
function translate($text) {
$deferred = new React\Promise\Deferred();
$es = new \Clue\React\EventSource\EventSource([
"POST",
'https://api.openai.com/v1/completions',
[
'Authorization' => 'Bearer sk-bdRUebZTlQpQndm1hhmRT3BlbkFJOqRLYJoV4u4eWY3APC',
'Content-Type' => 'application/json',
],
json_encode([
'model' => 'text-davinci-003',
// 'model' => 'text-davinci-002-render',
'prompt' => "Translate into Chinese and keep the source code
",
'temperature' => 0,
"max_tokens" => 1500,
"frequency_penalty" => 0,
"presence_penalty" => 0.6,
"stream" => true,
])
]);
$es->on('open', function () {
echo 'open';
});
$replay = '';
$es->on('message', function (\Clue\React\EventSource\MessageEvent $message) use (&$replay) {
$json = json_decode($message->data, true);
if ($json) {
$replay .= $json['choices'][0]['text'];
echo $json['choices'][0]['text']."\n";
} else {
echo $message->data;
}
});
$es->on('error', function ($e) use ($es, $deferred, &$replay) {
$es->readyState = \Clue\React\EventSource\EventSource::CLOSED;
$deferred->resolve($replay);
echo $e->getMessage();
});
return $deferred->promise();
}