你可以用
完成
exec(escapeshellarg('/bin/sh myfilename.sh '.$key0.'='.$value0)); //e t.c.
- 但要获得这些值,您应该使用bash shell语言(即在myfilename.sh
中接收)。请参阅此article。在SO中,有一个很好的答案 - 见here。
$v1="abc=cde";
$v2="fgh=ijk";
$v3="lmn=opq";
exec("sh myfilename.sh $v1 $v2 $v3");