gpt4 book ai didi

php - 从 bash 调用 php 函数 - 带参数

转载 作者:行者123 更新时间:2023-12-02 05:49:29 24 4
gpt4 key购买 nike

我有一个带有 concat 函数的简单 func.php 文件:

<?php
function concat($arg1, $arg2)
{
return $arg1.$arg2;
}
?>

我想用两个参数从 linux bash shell 调用这个函数:

1st: "Hello, "
2nd: "World!"

并将输出(“Hello, World!”)打印到 linux bash shell。

请告诉我,怎么做?

最佳答案

你要的是$argv

例如,您的脚本将这样调用:

php/path/to/script.php '你好,' '世界!'

然后在您的 PHP 文件中:

<?php
$arg1 = $argv[1];
$arg2 = $argv[2];

echo concat($arg1, $arg2);

function concat($arg1, $arg2) {
return $arg1 . $arg2;
}

关于php - 从 bash 调用 php 函数 - 带参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27090760/

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