有兩個相關問題:
一、
如果使用exec,要去掉disable_functions。
那如何保證安全?
二、1.php和test.py放在同一目錄
1.php:
<code><?php exec('python test.py'); ?> </code>
test.py:
print '1234'
呼叫http://localhost/1.php,沒有反應?
有兩個相關問題:
一、
如果使用exec,要去掉disable_functions。
那如何保證安全?
二、1.php和test.py放在同一目錄
1.php:
<code><?php exec('python test.py'); ?> </code>
test.py:
print '1234'
呼叫http://localhost/1.php,沒有反應?
在 php 中呼叫 python 沒有反應可能是因為環境變數的問題,你可以使用 python 的絕對路徑 + python 檔案的絕對路徑來呼叫試一試。
這裡調用如果沒有特殊處理可能是 http 的同步調用,這個地方會等待 python 運行,有可能超時。
盡量在CLI模式下使用exec等函數
直接python調php