[問題] php call python

作者: lccf   2021-04-29 00:16:12
各位大大好
想請教一下
如果我目前想在linux appserv環境下 寫一隻PHP 去執行python
有參考相關的做法
PHP端
test.php
<?php
$command = escapeshellcmd('python3 /usr/custom/test.py');
$output = shell_exec($command);
echo $output;
?>
Python端: test.py
fp = open("filename.txt", "a")
# 寫入 This is a testing! 到檔案
fp.write("This is a testing!")
# 關閉檔案
fp.close()
如果用以下執行時 http://127.0.0.1/test.php
會無法正常產生filename.txt
他會直接略過整隻python, 不知是否有其他相關的作法 感謝
作者: penut85420 (PenutGGorz)   2021-04-29 00:50:00
考慮看看用python另外跑個server,用php發request給他
作者: oToToT (屁孩)   2021-04-29 01:31:00
權限問題?
作者: HamalAri (哈馬‧阿里)   2021-04-29 09:37:00
我猜大概是 open_basedir 設定, 是說用 linux 還用 appserv 只是自找麻煩
作者: hms5232 (未)   2021-04-29 20:54:00
先用whereis python3看一下路徑 打完整路徑上去再試試看

Links booklink

Contact Us: admin [ a t ] ucptt.com