将PHP变量传递给Python文件可以通过以下几种方式实现:
exec()
或shell_exec()
函数调用Python脚本,并将PHP变量作为命令行参数传递给Python脚本。在Python脚本中,可以使用sys.argv
来获取传递的参数值。示例代码:
$phpVariable = "Hello World";
$command = "python script.py " . escapeshellarg($phpVariable);
$output = shell_exec($command);
import sys
python_variable = sys.argv[1]
print(python_variable)
proc_open()
函数在PHP中创建一个与Python进程通信的管道,并通过标准输入输出传递数据。在Python脚本中,可以使用sys.stdin
读取PHP传递的数据。示例代码:
$phpVariable = "Hello World";
$descriptors = array(
0 => array("pipe", "r"), // 标准输入
1 => array("pipe", "w"), // 标准输出
);
$process = proc_open('python script.py', $descriptors, $pipes);
if (is_resource($process)) {
fwrite($pipes[0], $phpVariable);
fclose($pipes[0]);
$output = stream_get_contents($pipes[1]);
fclose($pipes[1]);
proc_close($process);
}
import sys
python_variable = sys.stdin.read()
print(python_variable)
示例代码:
$phpVariable = "Hello World";
$filename = tempnam(sys_get_temp_dir(), 'php');
file_put_contents($filename, $phpVariable);
$output = shell_exec("python script.py $filename");
unlink($filename);
with open(sys.argv[1], 'r') as file:
python_variable = file.read()
print(python_variable)
以上是将PHP变量传递给Python文件的几种常见方法。根据具体的场景和需求,选择适合的方法来实现数据传递。
领取专属 10元无门槛券
手把手带您无忧上云