Data Type Php

$state = array("A","P","N");
$state = array_flip($state);
print_r($state);
?>