首页
技术小册
AIGC
面试刷题
技术文章
MAGENTO
云计算
视频课程
源码下载
PDF书籍
「涨薪秘籍」
登录
注册
SplDoublyLinkedList-双向链表
SplDoublyLinkedList add()方法
SplDoublyLinkedList bottom()方法
SplDoublyLinkedList count()方法
SplFixedArray count()方法
SplFixedArray current()方法
SplFixedArray getSize()方法
SplFixedArray key()方法
SplObjectStorage addAll()方法
SplObjectStorage attach()方法
SplObjectStorage contains()方法
SplObjectStorage count()方法
SplQueue::__construct()方法
SplQueue::enqueue()方法
SplQueue::dequeue()方法
双向链表的更多方法
SplFixedArray更多方法
SplObjectStorage更多方法
当前位置:
首页>>
技术小册>>
PHP合辑5-SPL标准库
小册名称:PHP合辑5-SPL标准库
SplDoublyLinkedList::add()函数是PHP中的内置函数,用于在给定索引处添加新值。 语法: void SplDoublyLinkedList::add( index,newval ) 参数:它包含上面提到的两个参数,并如下所示: index:它保存新元素要插入的索引值。newval:它保存要插入或添加的元素。 返回值:它不返回任何值。 示例: ``` <?php // Declare an empty SplDoublyLinkedList $list = new \SplDoublyLinkedList; // Use SplDoublyLinkedList::add() function to // add elements to the SplDoublyLinkedList $list->add(0, 1); $list->add(1, "Geeks"); $list->add(2, "G"); $list->add(3, 10); print_r($list); ?> ``` output: ``` SplDoublyLinkedList Object ( [flags:SplDoublyLinkedList:private] => 0 [dllist:SplDoublyLinkedList:private] => Array ( [0] => 1 [1] => Geeks [2] => G [3] => 10 ) ) ```
上一篇:
SplDoublyLinkedList-双向链表
下一篇:
SplDoublyLinkedList bottom()方法
该分类下的相关小册推荐:
Magento零基础到架构师(安装篇)
PHP8入门与项目实战(8)
Swoole入门教程
Laravel(10.x)从入门到精通(六)
Laravel(10.x)从入门到精通(十二)
PHP8入门与项目实战(1)
剑指PHP(从入门到进阶)
Workerman高性能Web框架-Webman
Laravel(10.x)从入门到精通(十一)
Magento零基础到架构师(库存管理)
PHP8入门与项目实战(2)
全栈工程师修炼指南