php Sort 函数实例 <?php $states = array('OH' => 'Ohio', 'CA' => 'California', 'MD' => 'Maryland'); sort($states); print_r($states); ?>