Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试通过 php 调用 python 脚本:
<?php $a = exec("python ~/www/encrypt.py"); echo $a; ?>
我使用终端和php index.php命令查看结果,它运行良好,但在网络浏览器中它不显示任何内容。
php index.php
通过完整路径解决的问题>>exec("python /var/www/encrypt.py");
exec("python /var/www/encrypt.py");