在PHP中,如何检查两个get变量的URL?
我想检查我的url是否需要设置两个变量,一个是ID号,第二个是更新。 ID变量不需要为空,另一个只是触发更新代码块。我有
if(isset($_GET['id']) and !empty($_GET['id']) and isset($_GET['update']) and empty($_GET['update'])):
但它只检查ID是否已设置且未运行更新代码。有什么想法吗?
答案 0 :(得分:1)
<?php
if (isset($_GET['id']) && isset($_GET['update']))
{
// Do something with $_GET['id'] and $_GET['update']...
}
else
{
// They both were not set
}