地址参数 &times 转义成 x 的问题

  • Post author:
  • Post category:其他


$url = 'http://localhost/mytest';
$time = floor(microtime(true) * 1000);
$url .=  '?code=codevalue' . '&timestamp=' . $time ;
echo $url;
echo '</br>';
echo htmlspecialchars($url);

直接输出 url

http://localhost/mytest?code=codevalue×tamp=1636015106989

htmlspecialchars 处理后输出 url

http://localhost/mytest?code=codevalue&timestamp=1636015106989



版权声明:本文为YYYYolanda原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。