gpt4 book ai didi

php - 使用 php file_get_content 函数发送参数

转载 作者:可可西里 更新时间:2023-11-01 00:01:22 24 4
gpt4 key购买 nike

亲爱的,
我如何使用 php file_get_content 函数发送参数。

$id='123';
$name='blah';
$response=file_get_contents('http://localhost/abc/abc.php?id=$id&name=$name');
echo $response;

我需要将 $id 和 name 值发送到 abc.php 页面。这里传递的值不起作用。我也查了一下?id="$id"&name="$name"值。它也不起作用。但是 straite 参数 works.say-

$response=file_get_contents('http://localhost/abc/abc.php?id=123&name=blah');

现在他们有好心人可以帮助我将 2 个参数 $id 和 $name 发送到 abc.php 吗?

谢谢
里亚德

最佳答案

单引号禁止变量替换。

$response=file_get_contents("http://localhost/abc/abc.php?id=$id&name=$name");

不过不要忘记对所有参数进行 URL 编码。

关于php - 使用 php file_get_content 函数发送参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4321955/

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