我试图通过URL传递值但是当我检索它时,它看起来像',urlencode(15.99),'
值是正确的,但我尝试过不同的东西,但仍然无法在没有urlencode或添加语法的情况下发送值 我试图发送值的代码行是
redirect_to(“$ the_file_is?subj ='。urlencode($ the_price_is)'”);
答案 0 :(得分:0)
假设我理解正确,这应该可以满足您的需求:
redirect_to($the_file_is . '?subj=' . urlencode($the_price_is));
答案 1 :(得分:0)
当然只需改为......
redirect_to($the_file_is."?subj=" . urlencode($the_price_is));
答案 2 :(得分:0)
几乎就是 - 只是引用一点混乱:)
redirect_to("$the_file_is?subj=" . urlencode($the_price_is));
值得注意的是,你可以用双引号引用变量,所以:
echo "hello $name";
可行,但echo "$actioned";
可能需要echo "{$action}ed"; echo $action.'ed';
取决于此。