<?php
$whitelist = array('contact', 'about', 'user');
$_GET['page'] = array('contact');
$test = $_GET['page'];
if(isset($test))
{
if(in_array($whitelist, $test))
{
$got = $test;
echo $got;
}
else
{
$got = 'home';
echo $got;
}
}
?>
现在在这里,我应该得到“联系”的结果,但我得到了“家”。这是为什么 ?