PHP Erlang Bridge # ei_connect 错误
我安装了 mypeb php apache erlang 等。
mypeb 在这里:http://code.google.com/p/mypeb/
我需要连接Erlang节点并调用它。
那么我的php代码是:
$link = peb_connect('[email protected]', 'abc');
if (!$link) {
die('Could not connect: ' . peb_error());
}
[email protected]
是我的 Erlang 节点,
我注意到以下连接错误: ei_connect error
help 所以,谢谢。
I installed the mypeb php apache erlang and more.
mypeb is here : http://code.google.com/p/mypeb/
I need to connect Erlang node and call it.
then my php code is :
$link = peb_connect('[email protected]', 'abc');
if (!$link) {
die('Could not connect: ' . peb_error());
}
[email protected]
is my Erlang node,
I noticed the following connection error: ei_connect error
help so ,thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议使用 ProtocolBuffers 或 ASN.1 在 PHP 和 Erlang 之间进行通信,而不是使用此桥。
I'd recommend using ProtocolBuffers or ASN.1 to communicate between PHP and Erlang instead of this bridge.