This article is based on the analysis and writing of the broadcast module code of Laravel 5.4 version;
Recommended: "laravel tutorial"
Introduction
Broadcasting means that the sender sends a message, and each receiver who subscribes to the channel can receive the message in time; for example, student A writes an article, and student B comments under the article, and student A comments on the page You can receive notifications that an article has been commented on without refreshing. This essentially means that student A has received a broadcast message. This broadcast message is triggered by the action of student B commenting;
is broadcast throughout the entire broadcast. In behavior, there is an important concept called channel. The types of channels are
● Public channel public
● Private channel private
● Existence channel presence
If the mobile terminal subscribes to the public channel public, it will directly prompt success; during the subscription process of private channel private and existing channel presence, permission verification will be sent to the server to see if it has permission to subscribe to the channel; private channel private The difference from channel presence is that private channel private can receive messages sent by other members, while channel presence can also receive messages when users join and leave;
Broadcasting is suitable for the following scenarios (This small part is excerpted from Laravel event broadcast based on Pusher driver (Part 1)):
● Notification or Signal
Notification is the simplest example and the most commonly used arrive. Signals can also be seen as a form of notification, except that signals have no UI.
● Activity Streams
Activity Streams (feeds) are the core of social networks. For example, likes and comments in WeChat Moments, A can see B's likes in real time, and B can see A's comments in real time.
● Chat
Real-time display of chat information
Module composition

# #Demo
##Log driverConfiguration
.env file Modify or add a line: BROADCAST_DRIVER=log;
BroadcastDirect call
$manager = app(Illuminate\Broadcasting\BroadcastManager::class);
$driver = $manager->connection();
// 第一个参数是频道名,第二个参数是事件名,第三个参数是广播内容
$driver->broadcast(['channel_1', 'channel_2'], 'login', ['message' => 'hello world']);
Because it is a log driver, the broadcast content will be written to the log file configured by the framework , the output message is as follows
[2017-08-18 20:45:49] local.INFO: Broadcasting [login] on channels [channel_1, channel_2] with payload:
{
"message": "hello world"
}Listen to event broadcastThis calling method is that when the event that implements the ShouldBroadcast interface is triggered, a broadcast operation will be performed ; (At the same time, there is also an interface called ShouldBroadcastNow. The difference from the ShouldBroadcast interface is that when events that implement the ShouldBroadcastNow interface are put into the queue, they will be put into the queue called sync)
For example,
The first step, the Illuminate\Auth\Events\Login event is an event that will be triggered after the user successfully logs in. Slightly change it to implement the broadcast function;
class Login implements ShouldBroadcast {
......
// 定义事件被触发时,广播频道;此处定义名为 first-channel 的私有频道
public function broadcastOn() {
return [
new PrivateChannel('first-channel'),
];
}
// 自定义广播名称;如果方法未定义,默认以类名为事件名,此处的默认值是 Illuminate\Auth\Events\Login
public function broadcastAs() {
return 'login';
}
}The second step, register Event monitoring; modify in app/Providers/EventServiceProvider.php:
protected $listen = [
......
'Illuminate\Auth\Events\Login' => [
'App\Listeners\UserLogin',
],
];The file app/Listeners/UserLogin.php is roughly implemented:
class UserLogin {
public function __construct() {}
public function handle(Login $event){
\Log::info('Do UserLogin Listener: I was Login');
}
}The third step is to trigger the event and send it Broadcast; there are several ways to trigger broadcast:
1. Direct event trigger
event(new Illuminate\Auth\Events\Login($user, true));
2. Help function broadcast, indirect trigger event
broadcast(new Illuminate\Auth\Events\Login($user, true));
3. Broadcast management class, Indirectly trigger events, broadcast directly
$manager = app(Illuminate\Broadcasting\BroadcastManager::class); $manager->event(new Illuminate\Auth\Events\Login($user, true));
4. Broadcast management class, indirectly trigger events, put them into the queue
$manager = app(Illuminate\Broadcasting\BroadcastManager::class); $manager->queue(new Illuminate\Auth\Events\Login($user, true));Pusher driver
Pusher is a For third-party services, when the server sends a broadcast, it will send a request to Pusher, and then interact with data through the long connection maintained by Pusher and the browser or mobile terminal;
ConfigurationRegister user information through the Pusher official website, obtain your own set of key information, and modify the .env configuration file;
BROADCAST_DRIVER=pusher PUSHER_APP_ID=xxxxxxxxxxxxxxxxxxxxxx PUSHER_APP_KEY=xxxxxxxxxxxxxxxxxxxxxx PUSHER_APP_SECRET=xxxxxxxxxxxxxxxxxxxxxxPreparation
Event Listening
Event monitoring in the background still uses the login example of the "Log Driven" part;
Front-endThe front-end page introduces the following code:
<script src="https://js.pusher.com/4.1/pusher.min.js"></script>
<script>
// 打开 Pusher 的调试日志
Pusher.logToConsole = true;
// 定义 Pusher 变量
var pusher = new Pusher('PUSHER_APP_KEY的值', {
cluster: 'ap1',
encrypted: true
});
// 定义频道,绑定事件
var channel = pusher.subscribe('private-first-channel');
channel.bind('login', function(data) {
alert(data);
});
</script>If you subscribe to a public channel, you will not request permission check from the server; if it is a private channel (the channel name starts with private-) or there is a channel (the channel name starts with presence-), A permission check request will be issued; the corresponding backend needs to define the permissions of private channels and existing channels;
Channel permission definitionThe permission definition of the channel is in routes/ channels.php; here the author defines the permission callback function for the first-channel channel:
Broadcast::channel('first-channel', function ($user) {
return (int) $user->id === 1;
});Some readers may wonder, isn’t the channel subscribed to by the front-end page private-first-channel? Why does the backend only define the permissions of the first-channel channel? That's because, assuming the channel defined by the backend is A, then the private channel passed in Pusher and the browser or mobile terminal is named private-A. If the channel exists, it will be presence-A;
Broadcast##Direct broadcast
$manager = app(Illuminate\Broadcasting\BroadcastManager::class); $driver = $manager->connection(); // socket 参数是广播私有频道时排除的 socket, 每个浏览器端或者移动端在建立 websocket 时都会被分配一个 socket_id $driver->broadcast(['private-first-channel'], 'login', ['user' => ['name' => 'hello'], 'socket' => '5395.4377611']);Indirect broadcast
Refer to the indirect broadcast mentioned in "Log Driven" Way;
If you want to send an exclusive broadcast (that is, no broadcast message will be received except for the client currently requesting), the following conditions are required:
1. The event uses the Illuminate\Broadcasting\InteractsWithSockets trait;
2. The request header sent by the front end must carry X-Socket-ID information;
3. The event triggers broadcast(new Illuminate\Auth\Events\Login($user, true)) ->toOthers();
Redis driver
Configuration
.env file Modify or add a line: BROADCAST_DRIVER= redis;
Broadcast
The principle is to also deploy a Socket.IO server on the backend. The Laravel framework will publish messages to the Socket.IO server, and the Socket.IO The server maintains a long connection with the browser or mobile terminal;
I haven’t demoed this part yet, and there are quite a lot of introductory materials online. If you know the principle, it will be much easier to get started with this part of the action;
The above is the detailed content of Detailed explanation of Laravel's broadcast module. For more information, please follow other related articles on the PHP Chinese website!
Laravel (PHP) vs. Python: Weighing the Pros and ConsApr 17, 2025 am 12:18 AMLaravel is suitable for building web applications quickly, while Python is suitable for a wider range of application scenarios. 1.Laravel provides EloquentORM, Blade template engine and Artisan tools to simplify web development. 2. Python is known for its dynamic types, rich standard library and third-party ecosystem, and is suitable for Web development, data science and other fields.
Laravel vs. Python: Comparing Frameworks and LibrariesApr 17, 2025 am 12:16 AMLaravel and Python each have their own advantages: Laravel is suitable for quickly building feature-rich web applications, and Python performs well in the fields of data science and general programming. 1.Laravel provides EloquentORM and Blade template engines, suitable for building modern web applications. 2. Python has a rich standard library and third-party library, and Django and Flask frameworks meet different development needs.
Laravel's Purpose: Building Robust and Elegant Web ApplicationsApr 17, 2025 am 12:13 AMLaravel is worth choosing because it can make the code structure clear and the development process more artistic. 1) Laravel is based on PHP, follows the MVC architecture, and simplifies web development. 2) Its core functions such as EloquentORM, Artisan tools and Blade templates enhance the elegance and robustness of development. 3) Through routing, controllers, models and views, developers can efficiently build applications. 4) Advanced functions such as queue and event monitoring further improve application performance.
Laravel: Primarily a Backend Framework ExplainedApr 17, 2025 am 12:02 AMLaravel is not only a back-end framework, but also a complete web development solution. It provides powerful back-end functions, such as routing, database operations, user authentication, etc., and supports front-end development, improving the development efficiency of the entire web application.
Laravel (PHP) vs. Python: Understanding Key DifferencesApr 17, 2025 am 12:01 AMLaravel is suitable for web development, Python is suitable for data science and rapid prototyping. 1.Laravel is based on PHP and provides elegant syntax and rich functions, such as EloquentORM. 2. Python is known for its simplicity, widely used in Web development and data science, and has a rich library ecosystem.
Laravel in Action: Real-World Applications and ExamplesApr 16, 2025 am 12:02 AMLaravelcanbeeffectivelyusedinreal-worldapplicationsforbuildingscalablewebsolutions.1)ItsimplifiesCRUDoperationsinRESTfulAPIsusingEloquentORM.2)Laravel'secosystem,includingtoolslikeNova,enhancesdevelopment.3)Itaddressesperformancewithcachingsystems,en
Laravel's Primary Function: Backend DevelopmentApr 15, 2025 am 12:14 AMLaravel's core functions in back-end development include routing system, EloquentORM, migration function, cache system and queue system. 1. The routing system simplifies URL mapping and improves code organization and maintenance. 2.EloquentORM provides object-oriented data operations to improve development efficiency. 3. The migration function manages the database structure through version control to ensure consistency. 4. The cache system reduces database queries and improves response speed. 5. The queue system effectively processes large-scale data, avoid blocking user requests, and improve overall performance.
Laravel's Backend Capabilities: Databases, Logic, and MoreApr 14, 2025 am 12:04 AMLaravel performs strongly in back-end development, simplifying database operations through EloquentORM, controllers and service classes handle business logic, and providing queues, events and other functions. 1) EloquentORM maps database tables through the model to simplify query. 2) Business logic is processed in controllers and service classes to improve modularity and maintainability. 3) Other functions such as queue systems help to handle complex needs.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

Zend Studio 13.0.1
Powerful PHP integrated development environment

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment






