doutuohan6606 2014-09-01 15:05
浏览 24
已采纳

#in $ _Post,$ _Get或$ _Request导致空变量

If I try to submit a piece of text from a form that starts with # - or using GET, I don't get any data. Any idea what is going on here?

URL: {blah}/test.php?test1=foo&test2=#bar

Entire PHP Code:

echo $_REQUEST['test1'];
echo '<br/>';
echo $_REQUEST['test2'];
echo '<br/>';

var_dump($_GET);

Gives this in the browser:

foo

array(2) { ["test1"]=> string(3) "foo" ["test2"]=> string(0) "" }

If I write some more text before the # e.g. "foo #bar" then I get "foo"

  • 写回答

1条回答 默认 最新

  • douao8353 2014-09-01 15:06
    关注

    The # character in a URL has special meaning. It indicates the start of the fragment identifier.

    You need to percent encode it (as %23) if you want to include it as data.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 基于作物生长模型下,有限水资源的最大化粮食产量的资源优化模型建立
  • ¥20 关于变压器的具体案例分析
  • ¥15 生成的QRCode圖片加上下載按鈕
  • ¥15 板材切割优化算法,数学建模,python,lingo
  • ¥15 科来模拟ARP欺骗困惑求解
  • ¥100 iOS开发关于快捷指令截屏后如何将截屏(或从截屏中提取出的文本)回传给本应用并打开指定页面
  • ¥15 unity连接Sqlserver
  • ¥15 图中这种约束条件lingo该怎么表示出来
  • ¥15 VSCode里的Prettier如何实现等式赋值后的对齐效果?
  • ¥20 keepalive配置业务服务双机单活的方法。业务服务一定是要双机单活的方式