gpt4 book ai didi

php - 从用户处获取数据并在 python 脚本中使用该数据

转载 作者:行者123 更新时间:2023-12-01 05:47:06 25 4
gpt4 key购买 nike

我是编码新手。我正在学习 php 和 python。

我想从用户那里获取数据。为此,我使用谷歌找到了一个基于 html 和 php 的表单

index.html

<html>
<body>

<form action="data.php" method="get">
TEXT1: <input type="text" name="text1">
TEXT2: <input type="text" name="text2">
<input type="submit">
</form>

</body>
</html>

现在 data.php 可以使用:

$_GET["text1"]$_GET["text2"]

但是我的脚本是用Python编写的。我不知道如何使用用户提供的数据。

请帮忙。

问候,阿布舍克。

最佳答案

可以 system(..) [http://php.net/manual/en/function.system.php] 命令使用命令行参数调用 python 脚本。

system('python myScript.py ' . $_GET['text1'] . ' ' . $_GET['text2']);

虽然我真的建议反对以这种方式使用用户提供的输入,但如果用户将 1;rm -rf/;echo 作为 $_GET['text1 ']你的系统会死掉..(假设apache以root身份运行,这也是一个坏主意)

关于php - 从用户处获取数据并在 python 脚本中使用该数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15716125/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com