不真实 - 请忽略

时间:2015-03-17 14:59:55

标签: python

我道歉。我的问题没有意义。

1 个答案:

答案 0 :(得分:1)

您需要运行Web服务器。那里有完整的python Web服务器,或者你可以让你自己的python代码充当服务器。或者您可以使用PHP服务器和execute the python script with it,但如果您从未完成过PHP,我认为它不会有用。

编辑:

我可能会使用php exec函数,因为你可以传递一个数组。

<?PHP
$output = [];
exec("python myScript.py", $output);
// the $output array now contains all lines printed by the python script
?>

<p>
  The solution was <?PHP echo $output[0]; ?>.
</p>