日期:2012-07-12  浏览次数:20436 次

函数count()
描述:
计算一变量中元素的个数
int count (mixed var);
Returns the number of elements in var , which is typically an array (since anything else will have one element).
Returns 0 if the variable is not set.
Returns 1 if the variable is not an array.


函数current()
描述:
传回数组指针目前所指的元素


mixed current (array array);


Each array variable has an internal pointer that points to one of its elements. In addition, all of the elements in the array are linked by a bidirectional linked list for traversing purposes. The internal pointer points to the first element that was inserted to the array until you run one of the functions that modify that pointer on that array.


The current() function simply returns the array element that's currently being pointed by the internal pointer. It does not move the pointer in any way. If the internal pointer points beyond the end of the elements list, current() returns false.


函数each()
描述:
返回数组中下一对key/value的值


array each (array array);


Returns the current key/value pair from the array array and advances the array cursor. This pair is returned in a four-element array, with the keys 0 , 1 , key , and value . Elements 0 and key each contain the key name of the array element, and 1 and value contain the data.


Example 1. each() examples


$foo = array( "bob", "fred", "jussi", "jouni" ); $bar = each( $foo );
$bar now contains the following key/value pairs:


0 => 0
1 => 'bob'
key => 0
value => 'bob'


$foo = array( "Robert" => "Bob", "Seppo" => "Sepi" ); $bar = each( $foo );


$bar now contains the following key/value pairs:


0 => 'Robert'
1 => 'Bob'
key => 'Robert'
value => 'Bob'


Example 2. Traversing $HTTP_POST_VARS with each()


echo "Values submitted via POST method:<br>";
while ( list( $key, $val ) = each( $HTTP_POST_VARS ) ) {
echo "$key => $val<br>";
}


函数end()
描述:
将数组中的指针移到最后一个
end (array array);
end() advances array 's internal pointer to the last element.


函数key()
描述:
从一数组中取出key
mixed key (array array);
key() returns the index element of the current array position.


函数ksort()
描述:
以key来排列一数组
Example 1. ksort() example


$fruits = array("d"=>"lemon","a"=>"orange","b"=>"banana","c"=>"apple");
ksort($fruits);
for(reset($fruits);
$key = key($fruits);
next($fruits)) { echo "fruits[$key] = ".$fruits[$key]."\n"; }


This example would display: fruits[a] = orange fruits[b] = banana fruits[c] = apple fruits[d] = lemon


函数list()
描述:
用类似数组的方式去指定一整串变量的值
Example 1. list() example


<table> <tr> <th> Employee name</th>
<th>Salary</th> </tr>
<?php $result = mysql($conn, "SELECT id, name, salary FROM employees");
while (list($id, $name, $salary) = mysql_fetch_row($result)) {
print(" <tr>\n"."<td><a href=\"info.php3?id=$id\">$name</a></td>\n"."<td>$salary</td>\n"." </tr>\n");
}
?>
</table>


函数next()
描述:
将数组的指向指到下一组数据



函数pos()
描述:
传回数组的当前的数据


函数prev()
描述:
传回数组的前一条的数据


函数reset()
描述:
数组的指针指到第一条


函数rsort ()
描述:
以倒序方式排列一个数组
Example 1. rsort() example


$fruits = array("lemon","orange","banana","apple");
rsort($fruits);
for(reset($fruits); ($key,$value) = each($fruits); ) {
echo "fruits[$key] = ".$value."\n";
}


This example would display: fruits[0] = orange fruits[1] = lemon fruit