PHP | Tecla AppendIterator() Función

La función AppendIterator::key() es una función incorporada en PHP que se usa para devolver la clave actual.

Sintaxis:

scalar AppendIterator::key( void )

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

Valor devuelto: esta función devuelve la clave actual si es válida o NULL de lo contrario.

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

Programa 1:

<?php
  
// Declare an ArrayIterator
$arr1 = new ArrayIterator(array('G', 'e', 'e', 'k', 's'));
  
// Create a new AppendIterator
$itr = new AppendIterator;
  
// Append the ArrayIterator element
$itr->append($arr1);
  
// Display the result
while ($itr->valid()) {
    echo "ArrayIterator Key: " . $itr->key() .
    "  ArrayIterator Value: " . $itr->current() . "\n";
      
    $itr->next();
}
  
?>
Producción:

ArrayIterator Key: 0  ArrayIterator Value: G
ArrayIterator Key: 1  ArrayIterator Value: e
ArrayIterator Key: 2  ArrayIterator Value: e
ArrayIterator Key: 3  ArrayIterator Value: k
ArrayIterator Key: 4  ArrayIterator Value: s

Programa 2:

<?php
  
// Declare an ArrayIterator
$arr1 = new ArrayIterator(
    array(
        "a" => "Geeks",
        "b" => "for",
        "c" => "Geeks"
    )
);
  
$arr2 = new ArrayIterator(
    array(
        "x" => "Computer",
        "y" => "Science",
        "z" => "Portal"
    )
);
  
// Create a new AppendIterator
$itr = new AppendIterator;
$itr->append($arr1);
$itr->append($arr2);
  
$itr->rewind();
  
// Display the result
while ($itr->valid()) {
    echo "ArrayIterator Key: " . $itr->key() .
    "  ArrayIterator Value: " . $itr->current() . "\n";
      
    $itr->next();
}
  
?>
Producción:

ArrayIterator Key: a  ArrayIterator Value: Geeks
ArrayIterator Key: b  ArrayIterator Value: for
ArrayIterator Key: c  ArrayIterator Value: Geeks
ArrayIterator Key: x  ArrayIterator Value: Computer
ArrayIterator Key: y  ArrayIterator Value: Science
ArrayIterator Key: z  ArrayIterator Value: Portal

Referencia: https://www.php.net/manual/en/appenditerator.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 *