帮我写一个php脚本,里面有一个输入框,输入请求包,返回python requests的格式
时间: 2024-03-20 13:39:46 浏览: 57
可以尝试使用以下 PHP 代码实现:
```php
<?php
if($_SERVER['REQUEST_METHOD'] == 'POST') {
$request = $_POST['request'];
// 将请求包转换为 Python requests 格式
$python_code = 'import requests' . PHP_EOL;
$python_code .= 'url = "' . $request['url'] . '"' . PHP_EOL;
$python_code .= 'headers = {' . PHP_EOL;
foreach($request['headers'] as $header) {
$python_code .= ' "' . $header['name'] . '": "' . $header['value'] . '",' . PHP_EOL;
}
$python_code .= '}' . PHP_EOL;
if($request['method'] == 'GET') {
$python_code .= 'response = requests.get(url, headers=headers)' . PHP_EOL;
} else {
$python_code .= 'data = {' . PHP_EOL;
foreach($request['data'] as $data) {
$python_code .= ' "' . $data['name'] . '": "' . $data['value'] . '",' . PHP_EOL;
}
$python_code .= '}' . PHP_EOL;
$python_code .= 'response = requests.post(url, headers=headers, data=data)' . PHP_EOL;
}
$python_code .= 'print(response.content)' . PHP_EOL;
// 输出转换后的 Python 代码
echo '<pre>' . htmlspecialchars($python_code) . '</pre>';
}
?>
<form method="post">
<label>请求包:</label><br>
<textarea name="request" rows="10" cols="50"></textarea><br>
<input type="submit" value="提交">
</form>
```
这段代码会在页面上显示一个输入框,您可以在其中输入请求包。当您点击提交按钮时,它会将请求包转换为 Python requests 格式,并把转换后的 Python 代码输出到页面上。请注意,这个代码只是一个简单的示例,您需要根据您实际的需求进行修改和完善。
阅读全文