Using Swoole to extend the PHP WebSocket sample

Source: Internet
Author: User
Tags extend php define php websocket

The goal of the

 websocket specification is to implement bidirectional communication with the server side in the browser. Bidirectional communication can expand the application type of the browser, if you want to use PHP to write WebSocket application, that swoole_framework must be the best choice, the need for friends can refer to the following

  Code as follows: <?php define (' DEBUG ', ' on '); Define ("Webpath", Str_replace ("", "/", __dir__)); Require __dir__. '/.. /libs/lib_config.php ';   Class WebSocket extends Swoolenetworkprotocolwebsocket {   /**      * offline, notify everyone of   & nbsp  */    Function onClose ($serv, $client _id, $from _id)     {       //Send message offline For everyone        //$this->log ("Onoffline:"). $client _id);        //$this->broadcast ($client _id, "Onoffline:". $client _id);         Parent::onclose ($serv, $client _id, $from _id);    }      /**      * received message      * @see wsprotocol::onmessage () & nbsp    */    function onMessage ($client _id, $ws)             $this->lo G ("OnMessage:" $client _id. ' = '. $ws [' message ']);         $this->send ($client _id, "Server:". $ws[' message ']);  //$this->broadcast ($client _id, $ws [' message ']);    }       function broadcast ($client _id, $msg)     {        Fore Ach ($this->connections as $clid => $info)         {            I F ($client _id!= $clid)             {              &NBSP ; $this->send ($clid, $msg);                     {   }}     $APPSVR = new We Bsocket (); $APPSVR->loadsetting (__dir__.) /swoole.ini "); Load configuration file $AppSvr->setlogger (new Swoolelogecholog (true)); Logger   $server = new Swoolenetworkserver (' 0.0.0.0 ', 9503); $server->setprotocol ($APPSVR); $server->daemonize (); As Daemon $server->run (' Worker_num ' =>4));    

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.