gpt4 book ai didi

javascript - 在 PHP 中发送请求之前将用户数据附加到 url

转载 作者:行者123 更新时间:2023-12-02 17:31:26 25 4
gpt4 key购买 nike

在发送请求之前将表单数据附加到 json url 的最简单方法是什么?我对 php 几乎一无所知,但我正在尝试两种方法

到目前为止,我需要将 ZIP before.json 替换为从 $_GET['zip'] 获取的内容

<?php
$zip = $_GET['zip'];
$zip_data = file_get_contents($zip);
$weather_data = file_get_contents("http://api.wunderground.com/api/myapi/conditions/q/ZIP.json");
echo $weather_data;
?>

最佳答案

在 PHP 中,如果您只是将变量名称放入用双引号引起来的字符串中,则会将值放入字符串中:

$weather_data = file_get_contents(".../q/$zip.json");

您还可以在其周围放置大括号以使其阅读起来更清晰:

$weather_data = file_get_contents(".../q/{$zip}.json");

或者您可以关闭字符串,使用点运算符连接,然后重新打开字符串:

$weather_data = file_get_contents(".../q/" . $zip . ".json");

关于javascript - 在 PHP 中发送请求之前将用户数据附加到 url,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23023712/

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