利用DNode实现php和nodejs之间的通信

WBOY
發布: 2016-06-23 13:56:48
原創
1201 人瀏覽過

一,安装DNode,

1, for nodejs, 执行

$ sudo npm install dnode
登入後複製


2, for php, 利用composer来安装DNode php

执行下列语句下载composer

$ wget http://getcomposer.org/composer.phar 
登入後複製
创建一个文件composer.json,然后填入如下语句,

{    "require": {        "dnode/dnode": "0.2.0"    }}
登入後複製
执行如下语句安装,

$ sudo php composer.phar install
登入後複製

二,利用nodejs创建简单server程序, server.js

var dnode = require('dnode');var server = dnode({    zing: function (n, cb) { cb(n * 100) }});server.listen(7070);
登入後複製
三,利用php创建客户端程序client.php, 其中需要引用刚才安装的dnode文件夹里面的文件autoload.php

<?php // Connect to DNode server running in port 7070 and call // Zing with argument 33require 'lib/vendor/autoload.php';// This is the class we're exposing to DNodeclass Temp{    // Compute the client's temperature and stuff that value into the callback    public function temperature($cb)    {    }}$loop = new React\EventLoop\StreamSelectLoop();$dnode = new DNode\DNode($loop, new Temp());$dnode->connect(7070, function($remote, $connection) {    // Remote is a proxy object that provides us all methods    // from the server    $remote->zing(33, function($n) use ($connection) {        echo "n = {$n}\n";        // Once we have the result we can close the connection        $connection->end();    });});$loop->run();?>
登入後複製

四,执行服务器端

$ node server.js
登入後複製

五,执行客户端调用服务端程序

$ php client.php
登入後複製

这会调用服务器端的加法程序,然后输出结果

n = 3300



相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板