标题reset
日期:2008-07-03    作者:semirock   来源:http://444p.com
文章打印自: PHP学习之家
访问文章完全地址: http://www.444p.com/example/php-function/aid2194-reset/
头部广告
reset
<HTML>
<HEAD>
<TITLE>reset</TITLE>
</HEAD>
<BODY>
<?
$colors = array("red", "green", "blue");
reset($colors);
print(current($colors));
?>
</BODY>
</HTML>