我有这个Ruby脚本(test.rb):
print "hello"
我有这个PHP脚本(test.php):
$cmd = "ruby test.rb";
system($cmd);
现在我以这种方式从CLI调用我的PHP脚本:
php test.php
我没有输出(它应该打印“你好”)
为什么?
答案 0 :(得分:6)
答案 1 :(得分:0)
它为我工作,检查ruby脚本和php是否在同一个文件夹中并在你的机器中安装了ruby
<?php
$cmd = "ruby test.rb";
system($cmd);
?>