(PHP 5, PHP 7, PHP 8)
ArrayObject::append — Appends the value
Appends a new value as the last element.
Bilginize:
This method cannot be called when the ArrayObject was constructed from an object. Use ArrayObject::offsetSet() instead.
value
The value being appended.
Hiçbir değer dönmez.
Örnek 1 ArrayObject::append() example
<?php
$arrayobj = new ArrayObject(array('first','second','third'));
$arrayobj->append('fourth');
$arrayobj->append(array('five', 'six'));
var_dump($arrayobj);
?>
Yukarıdaki örneğin çıktısı:
object(ArrayObject)#1 (1) { ["storage":"ArrayObject":private]=> array(5) { [0]=> string(5) "first" [1]=> string(6) "second" [2]=> string(5) "third" [3]=> string(6) "fourth" [4]=> array(2) { [0]=> string(4) "five" [1]=> string(3) "six" } } }
Follow Lee on X/Twitter - Father, Husband, Serial builder creating AI, crypto, games & web tools. We are friends :) AI Will Come To Life!
Check out: eBank.nz (Art Generator) |
Netwrck.com (AI Tools) |
Text-Generator.io (AI API) |
BitBank.nz (Crypto AI) |
ReadingTime (Kids Reading) |
RewordGame |
BigMultiplayerChess |
WebFiddle |
How.nz |
Helix AI Assistant