gpt4 book ai didi

php - 在重定向函数中使用变量

转载 作者:行者123 更新时间:2023-11-29 06:06:26 25 4
gpt4 key购买 nike

使用 PHP,我有一个脚本,可以从 mysql_db 搜索电子邮件,然后从数据库中的电子邮件所在的同一行获取用户名。我想要它做的是使用用户名作为 url 中的子域进行重定向

我已经尝试过:

 $username = //username taken from the db
$url = 'http://".$username."domain.com';
header('location: $url');

这只是将变量“$url”附加到我的测试 URL 的末尾。

我已经尝试过:

header('http://".$username."domain.com');

地址栏中输出:

http://%22.%24account_name.%22.domain.com

如何使用此搜索结果变量并重定向到我正在查找的子域?

最佳答案

您有大量语法错误。

版本 1 已更正(单引号中的变量被视为文字字符串):

$username = //username taken from the db
$url = 'http://".$username."domain.com';
header('location: ' . $url);

版本 2 已更正(您的语法和引用用法均错误):

header("Location: http://".$username."domain.com");

关于php - 在重定向函数中使用变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11328124/

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