var runner = require("child_process");
var phpScriptPath = "file.php";
var argsString = "value,value2,value";
runner.exec("php " + phpScriptPath + " " +argsString, function(err, phpResponse, stderr) {
if(err) console.log(err); /* log error */
const chatId = msg.chat.id;
bot.sendMessage(chatId, phpResponse );
});