Source Code:
(back to article)
<?php $a = ["white", "blue"]; array_push($a, "green", "pink"); print_r($a); ?>
Result:
Report an issue