繁体   English   中英

获取node.js以在pollingLoop中执行本地.php文件

[英]Get node.js to execute local .php file inside pollingLoop

简而言之,这就是我申请的目的。

我有一个PHP文件,它通过ODBC连接读取数据并将其写入本地数据库。

每次在我的node.js,socket.io服务器中处理循环时,都需要在服务器上本地运行此PHP文件。

我的设置是Apache,PHP 5.5.12和node.js。

我非常相信有一个简单的方法可以做到这一点,但是通过遵循其他指南,我对在Ajax或类似的东西在node.js中工作没有任何运气。

应该在其中处理文件的代码如下所示。

var pollingLoop = function () {
    // Update the local database
    // HERE I WANT THE PHP FILE TO EXECUTE

    // Make the database query
    var query = connection.query('SOME LONG SQL QUERY IN HERE'),
        status = []; // this array will contain the result of our db query

    // set up the query listeners
    query
        .on('error', function(err) {
            // Handle error, and 'end' event will be emitted after this as well
            console.log( err );
            updateSockets( err );
        })
        .on('result', function( runningstatus ) {
            // it fills our array looping on each runningstatus row inside the db
            status.push( runningstatus );
        })
        .on('end',function(){
            // loop on itself only if there are sockets still connected
            if(connectionsArray.length) {
                pollingTimer = setTimeout(pollingLoop, POLLING_INTERVAL);
                updateSockets({status:status});
            }
        });
};

我是否完全可以做到这一点?

尝试通过shell界面调用php:

var exec = require("child_process").exec;
app.get('/', function(req, res){exec("php index.php", function (error, stdout, stderr) {res.send(stdout);});});

此链接

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM