php传递参数给python

<?php
// 要传递给Python脚本的参数
$arg1 = 'hello';
$arg2 = 'world';

// 构建Python脚本的命令行
$command = 'python 2.py ' . escapeshellarg($arg1) . ' ' . escapeshellarg($arg2);

// 执行Python脚本并获取输出
$output = shell_exec($command);

echo $output;
?>