通过php变量传递给R并从R检索回变量到php

时间:2017-04-27 19:15:08

标签: php r

我在php $ number中有一个变量,我试图使用exec函数将它传递给R.在我的R脚本'该函数返回一个变量,我想将它放在php变量中 例如: 在PHP我有: $数= 5 我可以在我的Rscrit中写什么,所以我可以输出php文件号+ 1?

我的PHP代码是:

<?php
if (isset($_POST['upload'])) {
    $number = $_POST['nbeds'];

    //execute R script from shell
    exec("Rscript testinR.R $number", $output);

    echo $output;

    }
    ?>

我的R脚本:

args <- commandArgs(TRUE)

## Input Simulation parameters

number<-as.integer(args[1])   ## number of beds
return number+1

0 个答案:

没有答案