我正在尝试了解有关字符串和数组的更多信息。我有这段代码:
<?php
$states = "OH, VA, GA";
$arrayStates = explode(",", $states);
$exists = "GA";
print_r($arrayStates);
if (in_array($exists, $arrayStates)){
echo "<br/>" . $exists . " " . "exists.";
} else {
echo "<br/>" . $exists . " " . "doesn't exist.";
}
?>
根据我微弱的想法,GA应该存在于数组中。如果我输入 $exists = "OH",那就行得通。但屏幕显示:
Array ( [0] => OH [1] => VA [2] => GA )
GA 不存在。
我在这里不明白什么?