标签:数组 and style tab cas 输出 数组去重 更改 size
1、数组去重(array_unique):
<?php
$a=array("a"=>"Cat","b"=>"Dog","c"=>"Cat");
print_r(array_unique($a));
?>
输出:
Array ( [a] => Cat [b] => Dog )
2、数组、字符串排序(sort):
sort(array,sortingtype);
array:必需。规定要进行排序的数组。
sortingtype:
可选。规定如何比较数组的元素/项目。可能的值:
标签:数组 and style tab cas 输出 数组去重 更改 size
原文地址:http://www.cnblogs.com/shark1100913/p/6029006.html