<?
$xm="1?x=1";
if($_GET["x"]=="1" || $_GET["x"]=='$xm'){ ?>
String Works
<? } ?>

基本上URL是这样的:
http://site.com/shop/category/product?x=1?x=1

提交表单时会发生这种情况。我无法将其更改为:
http://site.com/shop/category/product?x=1&x2=1

最佳答案

更改为:

<?
$xm="1?x=1";
if($_GET["x"]=="1" || $_GET["x"]=="{$xm}"){ ?>
String Works
<? } ?>

10-06 00:42