📜  PHP | ArrayIterator append()函数

📅  最后修改于: 2022-05-13 01:56:44.766000             🧑  作者: Mango

PHP | ArrayIterator append()函数

ArrayIterator::append()函数是PHP中的一个内置函数,用于将元素附加到数组迭代器中。

句法:

void ArrayIterator::append( mixed $value )

参数:此函数接受单个参数$value ,其中包含需要附加的值。

返回值:此函数不返回任何值。

下面的程序说明了PHP中的 ArrayIterator::append()函数:

方案一:

append("123");
  
// Display the elements
while($arrItr->valid()) {
    echo $arrItr->current();
    $arrItr->next();
}
   
?>
输出:
Geeks123

方案二:

 "Geeks",
        "b" => "for",
        "c" => "Geeks"
    )
);
   
// Append the array element
$arrItr->append("Computer");
$arrItr->append("Science");
$arrItr->append("Portal");
   
// Display the elements
foreach ($arrItr as $key => $val) {
    echo $key . " => " . $val . "\n";
}
   
?>
输出:
a => Geeks
b => for
c => Geeks
0 => Computer
1 => Science
2 => Portal

参考: https://www. PHP.net/manual/en/arrayiterator.append。 PHP