$variable
以下のコードでは、 「$one」に等しいかどうかを確認する方法を教えてください。
<?php
$one = array (1,2,3);
$two = array (4,5,6);
$variables = array ($one, $two);
foreach ($variables as $variable){
//check if the $variable is equal to "$one"
//do stuff that is specific for array $one
}
?>