作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 Ratchet 创建 websocket 服务器,但我有一个问题....
如何编写我自己的类并将它们用于此......
PHP :
<?php
namespace MyApp;
use Ratchet\MessageComponentInterface;
use Ratchet\ConnectionInterface;
define ("ABSPATH" , "D:/MyProject/server/bin/");
require_once ABSPATH."config.php";
require_once ABSPATH."classes/clients.php";// <--- i required this file that
//it contain clients class
//but when i want to use it i get error that this class notfound
class Poker implements MessageComponentInterface {
protected $clients;
public function __construct(){
$this->clients = array();
}
public function onOpen(ConnectionInterface $conn) {
$client = new clients($conn);//here i get error
array_push($this->clients,$client);
}
public function onMessage(ConnectionInterface $from, $msg) {
}
public function onClose(ConnectionInterface $conn) {
}
public function onError(ConnectionInterface $conn, \Exception $e) {
}
}
require_once ABSPATH."classes\clients.php";
$client = new clients($conn);// ERROR CLASS NOT FOUND
Fatal error: Class 'MyApp\clients' not found in D:\MyProject\server\src\MyAp
p\Poker.php on line 18
最佳答案
这是因为当前文件在命名空间中,但我假设您的文件与客户端类不是?
尝试添加
namespace MyApp;
use
它就像您当前文件中的两行
关于php - 如何将我自己的类(class)添加到 Ratchat 服务器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33276177/
我正在使用 Ratchet 创建 websocket 服务器,但我有一个问题.... 如何编写我自己的类并将它们用于此...... PHP : clients = array();
我是一名优秀的程序员,十分优秀!