使用 exec 将 bash 的结果传递回 PHP

发布于 2024-12-11 18:36:38 字数 435 浏览 0 评论 0原文

我想在 PHP 中使用 'exec'/'bash_exec' 调用 bash 函数,然后将结果返回到 PHP 代码中。比如:

<?php
..
..

//bash funct. definitions
$my_bash_function_path='/usr/bin/ls';
$my_bash_param1='x1';
$my_bash_param2='dsfx1';

//clling bash function
exec( $my_bash_function_path." ".$my_bash_param1." ".$my_bash_param2 );

//doing something with a result of bash function
echo ("some_output_of_bash_function");
..
..
?>

我应该怎么做?

I to want call a bash function with 'exec'/'bash_exec' in PHP, and then get the result back into PHP code. Something like:

<?php
..
..

//bash funct. definitions
$my_bash_function_path='/usr/bin/ls';
$my_bash_param1='x1';
$my_bash_param2='dsfx1';

//clling bash function
exec( $my_bash_function_path." ".$my_bash_param1." ".$my_bash_param2 );

//doing something with a result of bash function
echo ("some_output_of_bash_function");
..
..
?>

How should I do it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

唔猫 2024-12-18 18:36:38

看一下函数的签名:

string exec ( string $command [, array &$output [, int &$return_var ]] )

如果使用 exec 函数的第二个参数,您将获得输出。更多详细信息请参见: http://php.net/manual/en/function.exec.php

Take a look at the signature of the function:

string exec ( string $command [, array &$output [, int &$return_var ]] )

If you use the second parameter of the exec function, you'll get the output. More details here: http://php.net/manual/en/function.exec.php

澜川若宁 2024-12-18 18:36:38

你也可以像这样运行 bash 命令:

$command=$my_bash_function_path." ".$my_bash_param1." ".$my_bash_param2;
$results=`$command`;
echo $results;

反引号使 php 执行里面的字符串并返回结果

you could also run the bash command like this:

$command=$my_bash_function_path." ".$my_bash_param1." ".$my_bash_param2;
$results=`$command`;
echo $results;

backticks makes php execute the string inside and return the result

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文