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

//put first two elements of returned array
//into key and value, respectively
list($key, $value) = each($colors);

print("$key: $value<BR>\n");
?>
</BODY>
</HTML>