輸出數組中的目前元素的值:
<?php$people = array("Peter", "Joe", "Glenn", "Cleveland");echo pos($people) . "<br>";?>pos() 函數傳回陣列中的目前元素的值。
該函數是current() 函數的別名。
每個數組中都有一個內部的指標指向它的"當前"元素,初始指向插入到數組中的第一個元素。
提示:函數不會移動數組內部指標。
相關的方法:
current() - 傳回數組中的目前元素的值。
end() - 將內部指標指向陣列中的最後一個元素,並輸出。
next() - 將內部指標指向陣列中的下一個元素,並輸出。
prev() - 將內部指標指向陣列中的上一個元素,並輸出。
reset() - 將內部指標指向陣列中的第一個元素,並輸出。
each() - 傳回目前元素的鍵名和鍵值,並將內部指標向前移動。
pos( array )
參數 | 描述 |
---|---|
array | 必需。規定要使用的數組。 |
傳回值: | 傳回數組中的目前元素的值,如果目前元素為空或目前元素沒有值則傳回FALSE。 |
---|---|
PHP 版本: | 4+ |
所有相關方法的示範:
<?php$people = array("Peter", "Joe", "Glenn", "Cleveland");echo current($people) . "<br>"; // The current element is Peterecho next($people) . "<br>"; // The next element of Peter is Joeecho current($people) . "<br>"; // Now the current element is Joeecho prev($people) . "<br>"; // The previous element of Joe is Peterecho end($people) . "<br>"; // The last element is Clevelandecho prev($people) . " <br>"; // The previous element of Cleveland is Glennecho current($people) . "<br>"; // Now the current element is Glennecho reset($people) . "<br>"; // Moves the internal pointer to the first element of the array, which is Peterecho next($people) . "<br>"; / / The next element of Peter is Joeprint_r (each($people)); // Returns the key and value of the current element (now Joe), and moves the internal pointer forward?>