尝试通过Elephant io到达ly节点服务器 但是我失败了:
在Version1X.php第194行:注意:未定义的索引:升级
我在作曲家中添加了依赖项,而wissembly / elephant-io在我的供应商中也很不错。
作曲家
"wisembly/elephant.io": "~3.0"
动作
$client = new Client(new Version1X('http://localhost:1299/map'));
// open connection
$client->initialize();
$output->writeln("update des offres");
$offers = $this->em->getRepository('AppRefactoredBundle:app_Offer')->findAll();
foreach($offers as $offer){
if($offer->getUpdatedAt() < new DateTime('-2 hours')){
$offer->setCurrentStatus(2);
// send for server (listen) the any array
$client->emit('timeout', ['idUser' => $offer->getProfile()]);
}
}
以下是文档:https://github.com/mairesweb/socket.io-elephant.io/blob/master/client.php
我不需要自动加载功能,因为我找不到它,可能就是这个原因...但是我不知道该怎么做。
感谢帮助。