Skip to content

Instantly share code, notes, and snippets.

View TAHIDUR's full-sized avatar
🏠
Working from home

MD. TAHIDUR RAHMAN TAHIDUR

🏠
Working from home
  • Veefin Solutions Pvt Ltd
  • Dhaka, Bangladesh
  • 09:57 (UTC +06:00)
  • X @TAHIDUR_IT
View GitHub Profile
@TAHIDUR
TAHIDUR / WebSocketController.php
Created May 15, 2023 18:39 — forked from Mevrael/WebSocketController.php
Laravel + WebSocket (Ratchet/ReactPHP) integration
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Auth;
use Illuminate\Support\Facades\Cookie;
use Illuminate\Support\Facades\Mail;
use Illuminate\Support\Facades\Session;
use Ratchet\WebSocket\Version\RFC6455\Connection;
@TAHIDUR
TAHIDUR / pthreads.md
Created February 28, 2023 05:01 — forked from krakjoe/pthreads.md
pthreads.md

Multi-Threading in PHP with pthreads

A Brief Introduction to Multi-Threading in PHP

  • Foreword
  • Execution
  • Sharing
  • Synchronization
  • Pitfalls