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