看个例子:   

 1 <?php 
 2    $test = array();
 3    $test[] = 'ABCD';
 4    $test[] = 'aaaa';
 5    $test[] = 'Bdka';
 6    $test[] = '1EEE';
 7    $test[] = '3666';
 8    $test[] = 'cddd';
 9    
10    sort($test);
11    foreach($test as $a)
12        echo $a.'<br>';
13 ?>
View Code

相关文章:

  • 2022-12-23
  • 2021-05-21
  • 2022-01-02
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-20
  • 2022-12-23
相关资源
相似解决方案