使用urlencode重定向问题

发布于 2024-11-02 16:18:21 字数 200 浏览 6 评论 0原文

我试图通过 URL 传递值,但当我检索它时,它看起来像这样“,urlencode(15.99)”,

该值是正确的,但我尝试了不同的方法,但仍然无法在没有 urlencode 或添加语法的情况下发送值 我尝试发送值的代码行是

redirect_to("$the_file_is?subj=' . urlencode($the_price_is)' ");

Am trying to pass the value hrough the URL but when i retrieve it it appears like this ' , urlencode(15.99),'

the value is correct but i have tried different things but still unable to just send the value without the urlencode or added syntax
the line of code am trying to send the value is

redirect_to("$the_file_is?subj=' . urlencode($the_price_is)' ");

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

辞旧 2024-11-09 16:18:21

假设我理解正确,这应该可以满足您的要求:
redirect_to($the_file_is . '?subj=' . urlencode($the_price_is));

This should do what you're looking for, assuming I understood it correctly:
redirect_to($the_file_is . '?subj=' . urlencode($the_price_is));

牛↙奶布丁 2024-11-09 16:18:21

当然只是更改为...

redirect_to($the_file_is."?subj=" . urlencode($the_price_is));

Surely just change to...

redirect_to($the_file_is."?subj=" . urlencode($the_price_is));
我一直都在从未离去 2024-11-09 16:18:21

几乎就这样了 - 只是有点报价混乱:)

redirect_to("$the_file_is?subj=" .urlencode($the_price_is));

值得注意的是,您可以在双引号中引用变量,因此:

< code>echo "hello $name"; 可以,但 echo "$actioned"; 可能需要 echo "{$action}ed"; echo $action.'ed'; 取决于。

Almost there - just a little bit of quote confusion :)

redirect_to("$the_file_is?subj=" . urlencode($the_price_is));

It's worth noting that you can reference variables in double quotes so:

echo "hello $name"; will work, but echo "$actioned"; might need to be echo "{$action}ed"; echo $action.'ed'; depending.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文