我想创建一个Websocket并需要从这个访问CakePHP ORM。 我正在使用Ratchet Websocket,代码如下:
<?php
use Ratchet\MessageComponentInterface;
use Ratchet\ConnectionInterface;
// Make sure composer dependencies have been installed
require __DIR__ . '/vendor/autoload.php';
/**
* chat.php
* Send any incoming messages to all connected clients (except sender)
*/
class MyChat implements MessageComponentInterface {
protected $clients;
public function __construct() {
$this->clients = new \SplObjectStorage;
}
public function onOpen(ConnectionInterface $conn) {
$this->clients->attach($conn);
}
public function onMessage(ConnectionInterface $from, $msg) {
foreach ($this->clients as $client) {
if ($from != $client) {
$client->send($msg);
}
}
}
public function onClose(ConnectionInterface $conn) {
$this->clients->detach($conn);
}
public function onError(ConnectionInterface $conn, \Exception $e) {
$conn->close();
}
}
运行代码:
$app = new Ratchet\App('localhost', 8080);
$app->route('/chat', new MyChat);
$app->route('/echo', new Ratchet\Server\EchoServer, array('*'));
$app->run();
我需要做两件事:
第二个很容易,但第一个我不知道如何初始化ORM类在MyChat类中抛出查询。
答案 0 :(得分:1)
我已经解决了它将自己传递给MyChat构造函数,如:
$app->route('/chat', new MyChat($this));
答案 1 :(得分:0)
要访问ORM,您可以像任何其他类一样设置Model类,并使用它们或您需要的任何内容进行查询。
如果您要使用蛋糕外壳,您只需要使用App :: uses导入模型,甚至可以使用'uses'数组变量。更多信息,请参阅文档book.cakephp.org/2.0/en/console-and-shells.html