📜  php 运行带有参数 json 的 python 脚本 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:53:59.076000             🧑  作者: Mango

代码示例1
PHP :

base64_encode(json_encode($bodyData))
then

json_decode(shell_exec('python ' . base64_encode(json_encode($bodyData)) );
and in Python I have

import base64
and

content = json.loads(base64.b64decode(sys.argv[1]))