Online Documentation Server
 ПОИСК
ods.com.ua Web
 КАТЕГОРИИ
Home
Programming
Net technology
Unixes
Security
RFC, HOWTO
Web technology
Data bases
Other docs

 


 ПОДПИСКА

 О КОПИРАЙТАХ
Вся предоставленная на этом сервере информация собрана нами из разных источников. Если Вам кажется, что публикация каких-то документов нарушает чьи-либо авторские права, сообщите нам об этом.




array_shift

array_shift

(PHP4 )

array_shift --  Pop an element off the beginning of array

Description

mixed array_shift (array array)

Array_shift() shifts the first value of the array off and returns it, shortening the array by one element and moving everything down.

Example 1. Array_shift() example


$args = array ("-v", "-f");
$opt = array_shift ($args);
      

This would result in $args having one element "-f" left, and $opt being "-v".

See also array_unshift(), array_push(), and array_pop().



With any suggestions or questions please feel free to contact us