溫馨提示×

php怎么調(diào)用python接口

小億
114
2023-12-09 03:11:31
欄目: 編程語言

要調(diào)用Python接口,可以使用PHP的exec()函數(shù)或shell_exec()函數(shù)來執(zhí)行Python腳本。

下面是一種調(diào)用Python接口的示例代碼:

<?php
$command = 'python /path/to/python_script.py arg1 arg2';
$result = exec($command);
// 或者使用 shell_exec() 函數(shù)
// $result = shell_exec($command);

echo $result;
?>

其中,/path/to/python_script.py 是你要調(diào)用的Python腳本的路徑,arg1 arg2 是要傳遞給Python腳本的參數(shù)。執(zhí)行完P(guān)ython腳本后,會將結(jié)果保存在 $result 變量中,可以根據(jù)需要進(jìn)行處理或輸出。

請注意,在執(zhí)行Python腳本時,需要確保PHP服務(wù)器上已經(jīng)安裝了Python,并且Python的路徑正確。

0