Movatterモバイル変換


[0]ホーム

URL:


    SplDoublyLinkedList::valid »
    « SplDoublyLinkedList::unserialize

    SplDoublyLinkedList::unshift

    (PHP 5 >= 5.3.0, PHP 7, PHP 8)

    SplDoublyLinkedList::unshiftPrepends the doubly linked list with an element

    Description

    publicSplDoublyLinkedList::unshift(mixed$value):void

    Prependsvalue at the beginning of the doubly linked list.

    Parameters

    value

    The value to unshift.

    Return Values

    No value is returned.

    Found A Problem?

    Learn How To Improve This PageSubmit a Pull RequestReport a Bug
    add a note

    User Contributed Notes1 note

    lincoln dot du dot j at gmail dot com
    8 years ago
    $dll = new SplDoublyLinkedList();$dll->push(2);$dll->push(3);$dll->unshift(5); // add 5 beginning of the array$dll->rewind();while($dll->valid()){    echo $dll->current()."\n";    $dll->next();}Output 523
    add a note
    To Top
    and to navigate •Enter to select •Esc to close •/ to open
    PressEnter without selection to search using Google

    [8]ページ先頭

    ©2009-2025 Movatter.jp