How to configure workerman under Windows? The following article will introduce to you how to configure Workerman in Windows environment. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to everyone.
Related recommendations: "workerman Tutorial"
Note: Composer must be installed before installing workerman
1. The first step is to visit the official website to download Workerman. The URL is as follows: https://www.workerman.net/
2. After downloading and decompressing, I changed the folder name to "workerman", opened the directory, and created a new "start.php" file. The page is as follows
3. start.php The content is as follows:
<?php use Workerman\Worker; //Autoloader.php路徑 require_once "./Autoloader.php"; $global_uid = 0; // 當(dāng)客戶端連上來時分配uid,并保存連接,并通知所有客戶端 function handle_connection($connection) { global $text_worker, $global_uid; // 為這個連接分配一個uid $connection->uid = ++$global_uid; } // 當(dāng)客戶端發(fā)送消息過來時,轉(zhuǎn)發(fā)給所有人 function handle_message($connection, $data) { global $text_worker; foreach($text_worker->connections as $conn) { $conn->send("user[{$connection->uid}] said: $data"); } } // 當(dāng)客戶端斷開時,廣播給所有客戶端 function handle_close($connection) { global $text_worker; foreach($text_worker->connections as $conn) { $conn->send("user[{$connection->uid}] logout"); } } // 創(chuàng)建一個文本協(xié)議的Worker監(jiān)聽2000接口 用0.0.0.0方便鏈接內(nèi)網(wǎng)外網(wǎng) $text_worker = new Worker("websocket://0.0.0.0:2000"); // 只啟動1個進程,這樣方便客戶端之間傳輸數(shù)據(jù) $text_worker->count = 1; $text_worker->onConnect = 'handle_connection'; $text_worker->onMessage = 'handle_message'; $text_worker->onClose = 'handle_close'; Worker::runAll();
4. Place the workerman file in any disk. I put it in the root directory of drive D. The page is as follows:
5. Enter cmd to open the command panel and open the start.php file. The operation command and page are as follows:
1、D: 2、cd workerman 3、php start.php start
6. Whether the browser test is successful: open Google or Sogou In the browser (any browser), press the F12 key, open the console, enter the following content and press the Enter key. If a pop-up box appears, it indicates success.
ws = new WebSocket("ws://127.0.0.1:2000"); ws.onopen = function() { alert("連接成功"); ws.send('tom'); alert("給服務(wù)端發(fā)送一個字符串:tom"); }; ws.onmessage = function(e) { alert("收到服務(wù)端的消息:" + e.data); };
For more programming-related knowledge, please visit: Programming Teaching! !
The above is the detailed content of How to configure workerman under Windows?. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undress AI Tool
Undress images for free

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

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

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

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

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

InstallthedesiredlanguagepackviaSettings→Time&Language→Language®ion,ensuring"SetasmyWindowsdisplaylanguage"isselected.2.Changethesystemdisplaylanguageinthesamemenuandrestart.3.OpenControlPanel→Region→Administrativetab,click"

ResettheMicrosoftStoreviaSettingsbygoingtoApps>Installedapps,selectingMicrosoftStore,clickingAdvancedoptions,thenRepairandResetifneeded.2.Ifthatfails,re-registertheStoreusingPowerShellasadminwiththecommand:Get-AppXPackage-NameMicrosoft.WindowsStor

ToresolvenetworkconnectivityissuesinWindows,resettheTCP/IPstackbyfirstopeningCommandPromptasAdministrator,thenrunningthecommandnetshintipreset,andfinallyrestartingyourcomputertoapplychanges;ifissuespersist,optionallyrunnetshwinsockresetandrebootagain

Without BootCamp, installing Windows on Mac is feasible and works for different chips and needs. 1. First check compatibility: The M1/M2 chip Mac cannot use BootCamp, it is recommended to use virtualization tools; the Intel chip Mac can manually create a boot USB disk and install it in partition. 2. Recommended to use virtual machines (VMs) for M1 and above chip users: Windows ISO files, virtualization software (such as ParallelsDesktop or UTM), at least 64GB of free space, and reasonably allocate resources. 3. IntelMac users can manually install it by booting the USB drive: USB drive, WindowsISO, DiskU is required

DownloadtheWindowsISOfromMicrosoft’sofficialsite.2.CreateabootableUSBusingMediaCreationToolorRufuswithaUSBdriveofatleast8GB.3.BootfromtheUSBbyaccessingthebootmenuoradjustingBIOS/UEFIsettings.4.InstallWindowsbyselectingcustominstallation,choosingtheco

Choose"Custom:InstallWindowsonly(advanced)"forfullcontrol,asitallowsacleaninstallthatremovesoldissuesandoptimizesperformance.2.Duringsetup,managepartitionsbydeletingoldones(afterbackingupdata),creatingnewpartitions,formatting(usingNTFS),ors

ForIntel-basedMacs,useBootCampAssistanttocreateadual-bootsystemwithWindowsbypreparingaUSBdrive,downloadingaWindowsISO,partitioningthedisk,andinstallingWindowsalongsidemacOSwithsupportdrivers.2.ForAppleSiliconMacs(M1/M2/M3),usevirtualizationsoftwareli

EnableAppLockerviaGroupPolicybyopeninggpedit.msc,navigatingtoApplicationControlPolicies,creatingdefaultrules,andconfiguringruletypes;2.Createcustomrulesusingpublisher,path,orhashconditions,preferringpublisherrulesforsecurityandflexibility;3.Testrules
