13 lines
276 B
PHP
13 lines
276 B
PHP
<?php
|
|
|
|
namespace ComCen\Http;
|
|
|
|
use Ratchet\ConnectionInterface;
|
|
|
|
class Utils
|
|
{
|
|
function responeJson(ConnectionInterface $conn, string $head, string $jsonData): void
|
|
{
|
|
$conn->send("HTTP/1.1 {$head}\r\nContent-Type: application/json\r\n\r\n{$jsonData}");
|
|
}
|
|
} |