我在PHP服务器5.3.3上使用wordpress,当我尝试获取$_SERVER['QUERY_STRING']
时出现错误。
我的代码如下:
$query_string = $_SERVER['QUERY_STRING'];
if($current_user->user_nicename == "admin"){
echo '<a class="button add_to_cart_button product_type_simple" href="#" target="_blank" >Lista cursos</a>';
if(isset($_GET['demo'])){
if (strpos($query_string,'&demo') !== false)
$enlacesindemo = str_replace("&demo","",$query_string);
}
}
?>
<a class="button add_to_cart_button product_type_simple" href="index.php?<?= $enlacesindemo ?>" target="_self">Ver todos</a>
我把它作为链接:
index.php?<?= $query_string ?>&demo
答案 0 :(得分:1)