标题rsort
日期:2008-07-04    作者:semirock   来源:http://444p.com
文章打印自: PHP学习之家
访问文章完全地址: http://www.444p.com/example/php-function/aid2195-rsort/
头部广告
rsort
<HTML>
<HEAD>
<TITLE>rsort</TITLE>
</HEAD>
<BODY>
<?
$colors = array("red", "green", "blue");
rsort($colors);
for($index = 0; $index < count($colors); $index++)
{
print("$index: $colors[$index] <BR>\n");
}
?>
</BODY>
</HTML>