PHPDaemon\SockJS\Methods\Htmlfile::sendFrame PHP Method

sendFrame() public method

Send frame
public sendFrame ( string $frame ) : void
$frame string
return void
    public function sendFrame($frame)
    {
        $this->outputFrame("<script>\np(" . htmlspecialchars(json_encode($frame, JSON_UNESCAPED_SLASHES), ENT_NOQUOTES | ENT_HTML401) . ");\n</script>\r\n");
        parent::sendFrame($frame);
    }