我在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