gpt4 book ai didi

php - 从 PHP 执行 Ruby 脚本并获取输出

转载 作者:数据小太阳 更新时间:2023-10-29 08:28:44 26 4
gpt4 key购买 nike

我有这个 Ruby 脚本 (test.rb):

print "hello"

我有这个 PHP 脚本 (test.php):

$cmd = "ruby test.rb";
system($cmd);

现在我以这种方式从 CLI 调用我的 PHP 脚本:

php test.php

我没有得到任何输出(它应该打印“hello”)

为什么?

最佳答案

system将捕获 ruby​​ 脚本的输出。

你可能想做:

$cmd = "ruby test.rb";
echo system($cmd);

关于php - 从 PHP 执行 Ruby 脚本并获取输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8604433/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com