Skip to content

Instantly share code, notes, and snippets.

@hiromi2424
Created October 16, 2011 03:56
Show Gist options
  • Select an option

  • Save hiromi2424/1290493 to your computer and use it in GitHub Desktop.

Select an option

Save hiromi2424/1290493 to your computer and use it in GitHub Desktop.
<?php
class ChatController extends AppController {
public $components = array(
'WebSocket',
);
public function send() {
$this->autoRender = false;
$this->WebSocket->send();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment