Запустите Ratchet php сервер без необходимости - PullRequest
0 голосов
/ 12 июля 2019

Я реализую чат в режиме реального времени с помощью Ratchet Он работает нормально, проблема в том, что мне нужно запустить server.php через командную строку, чтобы сервер работал, Я не могу запустить файл напрямую, я пытался через:

exec ()

и другие методы, но не удается запустить сервер, у кого-либо есть альтернатива илирешение?

server.php

<?php

use Ratchet\Http\HttpServer;
use Ratchet\Server\IoServer;
use Ratchet\WebSocket\WsServer;

   
require 'vendor/autoload.php';
require 'class/SimpleChat.php';

   
$server = IoServer::factory(
    new HttpServer(
        new WsServer(
            new SimpleChat()
        )
    ),
    8080
);

$server->run();

/ class / SimpleChat.php

<?php

use Ratchet\MessageComponentInterface;
use Ratchet\ConnectionInterface;

class SimpleChat implements MessageComponentInterface
{
    /** @var SplObjectStorage  */
    protected $clients;

    /**
     * SimpleChat constructor.
     */
    public function __construct()
    {
        conectados
        $this->clients = new \SplObjectStorage;
    }

    /**
     * @param ConnectionInterface $conn
     */
    public function onOpen(ConnectionInterface $conn)
    {
       
        $this->clients->attach($conn);
        echo "Cliente conectado ({$conn->resourceId})" . PHP_EOL;
    }

    /**
     * @param ConnectionInterface $from
     * @param string $data
     */
    public function onMessage(ConnectionInterface $from, $data)
    {
        
        $data = json_decode($data);
        $data->date = date('d/m/Y H:i:s');

        
        foreach ($this->clients as $client) {
            $client->send(json_encode($data));
        }

        echo "User {$from->resourceId} sent you a message" . PHP_EOL;
    }

    /**
     * @param ConnectionInterface $conn
     */
    public function onClose(ConnectionInterface $conn)
    {
        $this->clients->detach($conn);
        echo "User {$conn->resourceId} Disconnected" . PHP_EOL;
    }

    /**
     * @param ConnectionInterface $conn
     * @param Exception $e
     */
    public function onError(ConnectionInterface $conn, \Exception $e)
    {
        
        $conn->close();

        echo "Error {$e->getMessage()}" . PHP_EOL;
    }
}
...