我正在从PHP调用python脚本。
python程序必须根据传递给它的参数返回一些值。
下面是一个示例python程序,它将为您提供我当前所做工作的基本概念:
#!/usr/bin/python
import sys
#get the arguments passed
argList = sys.argv
#Not enough arguments. Exit with a value of 1.
if len(argList) < 3:
#Return with a value of 1.
sys.exit(1)
arg1 = argList[1]
arg2 =
我使用的是Linux终端应用程序,它工作得很完美,但我认为我在这里遇到了问题,我不知道这是一个应用程序还是一个me-error 下面是我的test.sh,#comment中的所有内容都是我在每一行调用/runs之后得到的,但请注意,这通常是两个文件,我猜只是将它们放在一起 #!/bin/bash
echo "this is a test"
# this is a test
ls
# code downloads
pwd
# /data/data/com.termux/files/home
ls code
# python
ls code/python
# scri