首頁  >  文章  >  web前端  >  使用DNode實作php和nodejs之間通訊的簡單實例_node.js

使用DNode實作php和nodejs之間通訊的簡單實例_node.js

WBOY
WBOY原創
2016-05-16 15:51:171102瀏覽

一、安裝DNode

1, for nodejs,執行

複製程式碼 程式碼如下:

$ sudo npm install dnode

2, for php, 利用composer來安裝DNode php

執行下列語句下載composer

複製程式碼 程式碼如下:

建立一個檔案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
複製程式碼 程式碼如下:

// Connect to DNode server running in port 7070 and call
// Zing with argument 33
require 'lib/vendor/autoload.php';


// This is the class we're exposing to DNode
class Temp
{
    // Compute the client's temperature and stuff that value into the callback
    public function temperature($cb)
    {
    }
}

$loop = new ReactEventLoopStreamSelectLoop();
$dnode = new DNodeDNode($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
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn