PHP | Tecla SplDoublyLinkedList() Función

La función SplDoublyLinkedList::key() es una función incorporada en PHP que se utiliza para devolver el índice del Node actual.

Sintaxis:

mixed SplDoublyLinkedList::key( void )

Parámetros: Esta función no acepta ningún parámetro.

Valor devuelto: Devuelve el índice del Node actual.

Los siguientes programas ilustran la función S plDoublyLinkedList::key() en PHP:

Programa 1:

<?php 
  
// Declare an empty SplDoublyLinkedList
$list = new \SplDoublyLinkedList;
  
// Use SplDoublyLinkedList::add() function to 
// add elements to the SplDoublyLinkedList
$list->add(0, 30);
$list->add(1, 20);
$list->add(2, 30);
$list->add(3, "Geeks");
$list->add(4, 'G');
$list->rewind();
  
// Use SplDoublyLinkedList::key() function
// to get the key
var_dump($list->key());
  
// Use next() function to increment
// the index value
$list->next();
  
// Use SplDoublyLinkedList::key() function
// to get the key
var_dump($list->key());
  
?> 
Producción:

int(0)
int(1)

Programa 2:

<?php 
  
// Declare an empty SplDoublyLinkedList
$list = new \SplDoublyLinkedList();
  
// Use SplDoublyLinkedList::push() function to 
// add elements to the SplDoublyLinkedList
$list->push(1);
$list->push(2);
$list->push(3);
$list->push(8);
$list->push(5);
  
$list->rewind();
  
// Use SplDoublyLinkedList::key() function
// to get the key
var_dump($list->key());
  
// Use next() function to increment
// the index value
$list->next();
$list->next();
$list->next();
  
// Use SplDoublyLinkedList::key() function
// to get the key
var_dump($list->key());
  
?> 
Producción:

int(0)
int(3)

Referencia: https://www.php.net/manual/en/spldoublylinkedlist.key.php

Publicación traducida automáticamente

Artículo escrito por jit_t y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *