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コマンドを使用して結果を確認しましたが、うまく機能しますが、Web ブラウザーでは何も表示されません。
php index.php
フルパスで解決する問題>>exec("python /var/www/encrypt.py");
exec("python /var/www/encrypt.py");