要調用Python接口,可以使用PHP的exec()函數或shell_exec()函數來執行Python腳本。
下面是一種調用Python接口的示例代碼:
<?php
$command = 'python /path/to/python_script.py arg1 arg2';
$result = exec($command);
// 或者使用 shell_exec() 函數
// $result = shell_exec($command);
echo $result;
?>
其中,/path/to/python_script.py
是你要調用的Python腳本的路徑,arg1 arg2
是要傳遞給Python腳本的參數。執行完Python腳本后,會將結果保存在 $result
變量中,可以根據需要進行處理或輸出。
請注意,在執行Python腳本時,需要確保PHP服務器上已經安裝了Python,并且Python的路徑正確。